diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 914ea04..9108361 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,47 +1,22 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
+import "./styles/base.css";
+import "./styles/variables.css";
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"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Ben's Pretzels Catering - Premium Event Catering Services", description: "Fresh, handcrafted pretzel catering for corporate events, weddings, and private parties. Custom packages available for 10-200+ guests.", keywords: "catering, pretzels, event catering, corporate catering, pretzel catering, food service", openGraph: {
- title: "Ben's Pretzels Catering", description: "Premium pretzel and gourmet snack catering for your next event", siteName: "Ben's Pretzels Catering", type: "website"},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Ben's Pretzels Catering", description: "Fresh, handcrafted pretzels and gourmet snacks for your next event."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 5da717b..0311ecb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -14,16 +14,16 @@ import { Sparkles, ChefHat, Users, Award, Phone, Facebook, Instagram } from "luc
export default function LandingPage() {
return (