diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c3bf743..1e4c330 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,8 @@ import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import Head from "next/head"; import type { Viewport } from 'next' +import Link from "next/link"; +import Image from "next/image"; export const viewport: Viewport = { width: 'device-width', @@ -24,6 +26,34 @@ export const metadata: Metadata = { description: "A Website to Learn Languages", }; +function MyLink( + { href, label }: { href: string, label: string } +) { + return ( + {label} + ) +} +function Navbar() { + return ( +