diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb3b7ad..3c33957 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Sushi Kun | Fresh Japanese Takeaway in Clovelly, NSW", description: "Affordable, fresh sushi made daily in Clovelly. 4.7★ rated. Call 0414 161 574 for takeaway orders, delivery, and directions.", keywords: "sushi Clovelly, Japanese takeaway Sydney, fresh sushi NSW, affordable sushi near me, sushi delivery Clovelly", metadataBase: new URL("https://sushikun.com.au"), - alternates: { - canonical: "https://sushikun.com.au"}, - openGraph: { - title: "Sushi Kun | Fresh Japanese Sushi in Clovelly", description: "Affordable, high-quality sushi made fresh daily. Visit us in Clovelly or call 0414 161 574.", url: "https://sushikun.com.au", siteName: "Sushi Kun", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/sushi-set-with-standart-ingridients_140725-4267.jpg", alt: "Fresh sushi platter"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sushi Kun | Fresh Sushi in Clovelly", description: "Fresh Japanese sushi made daily. Affordable, high-quality, local favorite.", images: ["http://img.b2bpic.net/free-photo/sushi-set-with-standart-ingridients_140725-4267.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sushi Kun - Fresh Sushi in Clovelly", description: "Fresh sushi made daily in Clovelly. Affordable, high-quality sushi and sashimi crafted with the finest ingredients."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}