-
-
-
- Get started by editing{" "}
-
- app/page.tsx -- . -
- - Save and see your changes instantly. -
diff --git a/app/fonts/GeistMonoVF.woff b/app/fonts/GeistMonoVF.woff deleted file mode 100644 index f2ae185..0000000 Binary files a/app/fonts/GeistMonoVF.woff and /dev/null differ diff --git a/app/fonts/GeistVF.woff b/app/fonts/GeistVF.woff deleted file mode 100644 index 1b62daa..0000000 Binary files a/app/fonts/GeistVF.woff and /dev/null differ diff --git a/app/layout.tsx b/app/layout.tsx index cd9bf9f..ce2bc00 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,17 +1,8 @@ import { type Metadata } from 'next'; -import localFont from 'next/font/local'; +import { Inter } from 'next/font/google'; import './globals.css'; -const geistSans = localFont({ - src: './fonts/GeistVF.woff', - variable: '--font-geist-sans', - weight: '100 900', -}); -const geistMono = localFont({ - src: './fonts/GeistMonoVF.woff', - variable: '--font-geist-mono', - weight: '100 900', -}); +const inter = Inter({ subsets: ['latin', 'cyrillic'] }); export const metadata: Metadata = { description: 'Generated by create next app', @@ -25,7 +16,7 @@ export default function RootLayout({ }>) { return ( -
{children} + {children} ); } diff --git a/app/page.tsx b/app/page.tsx index 9007252..08ea7bc 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,101 +1,9 @@ -import Image from "next/image"; - export default function Home() { return ( -
- app/page.tsx
-
- .
-