+
+
+
+
+
+ console.log("Contact form submitted:", email)}
+ />
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 86de0bd..2596b50 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,48 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Mulish } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import { ServiceWrapper } from "@/providers/serviceWrapper";
+import { Tag } from "@/components/common/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const mulish = Mulish({
- variable: "--font-mulish", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Sweet Scoops - Premium Handcrafted Ice Cream", description: "Premium handcrafted ice cream made fresh daily with natural ingredients. Visit Sweet Scoops for unique flavors and delightful frozen desserts.", keywords: "ice cream, gelato, handcrafted, premium ice cream, frozen desserts, natural ingredients", openGraph: {
- title: "Sweet Scoops - Premium Ice Cream", description: "Discover premium handcrafted ice cream with 30+ unique flavors made fresh daily.", siteName: "Sweet Scoops", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/close-up-refreshing-ice-cream-with-berries_23-2148513963.jpg", alt: "colorful ice cream cone summer"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Sweet Scoops - Premium Ice Cream", description: "Premium handcrafted ice cream with unique flavors made fresh daily.", images: ["http://img.b2bpic.net/free-photo/close-up-refreshing-ice-cream-with-berries_23-2148513963.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Sweet Scoops - Premium Handcrafted Ice Cream", description: "Discover premium handcrafted ice cream made fresh daily with the finest ingredients. Visit Sweet Scoops for a delightful frozen experience."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-