Skip to content
Snippets Groups Projects

Style/add tailwind typography and font

Merged mateuszmiko requested to merge style/add_tailwind_typography_and_font into development
1 unresolved thread
7 files
+ 59
6
Compare changes
  • Side-by-side
  • Inline
Files
7
import { Manrope } from '@next/font/google';
import { twMerge } from 'tailwind-merge';
import { Map } from '@/components/Map';
import { FunctionalArea } from '@/components/FunctionalArea';
const manrope = Manrope({
variable: '--font-manrope',
display: 'swap',
weight: ['400', '700'],
subsets: ['latin'],
});
export const MinervaSPA = (): JSX.Element => (
<div className="relative">
<div className={twMerge('relative', manrope.variable)}>
<FunctionalArea />
<Map />
</div>
Loading