From 3f912f08e505284d981a4076133f015770af73c6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:28:29 +0000 Subject: [PATCH 1/4] Add src/app/about/page.tsx --- src/app/about/page.tsx | 141 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..a6a6153 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,141 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Sparkles, Award, Star } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+
+ + +
+ ); +} -- 2.49.1 From 7654ad1ddcdb587be67f9bc6aa7c4de101426788 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:28:30 +0000 Subject: [PATCH 2/4] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 90 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..ecc71f3 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,90 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Mail } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log("Contact form submitted:", email)} + /> +
+ + +
+ ); +} -- 2.49.1 From 068df595c50c1b2bb7be4a477fe66787c3e90014 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:28:30 +0000 Subject: [PATCH 3/4] Update src/app/layout.tsx --- src/app/layout.tsx | 65 +++++++++++++++++++++------------------------- 1 file changed, 29 insertions(+), 36 deletions(-) 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 ( - - + +