diff --git a/src/app/globals.css b/src/app/globals.css index f624db2..d3d1b54 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,5 +1,20 @@ -@import "tailwindcss"; -@import "./styles/variables.css"; -@import "./styles/theme.css"; -@import "./styles/utilities.css"; -@import "./styles/base.css"; +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + * { + margin: 0; + padding: 0; + box-sizing: border-box; + } + + html { + scroll-behavior: smooth; + } + + body { + background-color: var(--background); + color: var(--foreground); + } +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2fd5fe6..fba4b66 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "The Daily Dish - Fresh Daily Specials & Inventory", description: "Discover The Daily Dish's featured cuisine and complete inventory of gourmet daily specials. Bold flavors, curated selections.", keywords: "restaurant, daily specials, gourmet food, inventory, cuisine, dining", metadataBase: new URL("https://thedailydish.com"), - openGraph: { - title: "The Daily Dish - Fresh Daily Specials", description: "Explore our featured dishes and complete inventory updated daily.", url: "https://thedailydish.com", siteName: "The Daily Dish", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/closeup-delicious-canape-served-white-plate_132075-14131.jpg", alt: "The Daily Dish Featured Cuisine"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Daily Dish - Daily Specials", description: "Fresh, bold flavors in every dish. Discover today's menu.", images: ["http://img.b2bpic.net/free-photo/closeup-delicious-canape-served-white-plate_132075-14131.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Daily Dish", description: "Discover fresh, bold flavors in our meticulously curated selection of daily specials."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +