From e9c9abf1329ebec6cc440871158da75369ae639d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:21:05 +0000 Subject: [PATCH 1/3] Add src/app/about/page.tsx --- src/app/about/page.tsx | 145 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 145 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..8172b00 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,145 @@ +"use client"; + +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; + +const navItems = [ + { name: "Collections", id: "products" }, + { name: "About", id: "about" }, + { name: "Why Us", id: "features" }, + { name: "Testimonials", id: "testimonial" }, + { name: "Contact", id: "contact" }, +]; + +const testimonials = [ + { + id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/serious-successful-young-businessman-standing-office-looking-camera_1163-4223.jpg", imageAlt: "professional headshot corporate business"}, + { + id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-african-american-businessman_1262-20994.jpg", imageAlt: "professional headshot corporate business"}, + { + id: "3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg", imageAlt: "professional headshot corporate business"}, + { + id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-psd/portrait-modern-woman_23-2150116726.jpg", imageAlt: "professional headshot corporate business"}, +]; + +const brandNames = [ + "Microsoft", "Google", "Apple", "Amazon", "Salesforce", "HubSpot", "Slack", "Adobe", "Figma" +]; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From d4260111fb8b26fccb27e6ab3c35130cff3aa5fc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:21:06 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++---------------------------------------- 1 file changed, 5 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e87e477..0b2b71e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,16 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Promotional Products & Branded Merchandise | Seven Eight Creative", description: "Discover premium, design-forward promotional products and branded merchandise. Curated collections for corporate gifting and employee recognition. Expert customization & reliable fulfillment.", keywords: "promotional products, branded merchandise, corporate gifts, custom promotional items, employee recognition, branded goods", metadataBase: new URL("https://seveneightcreative.com"), - alternates: { - canonical: "https://seveneightcreative.com"}, - openGraph: { - title: "Promotional Products Designed Differently", description: "Curated merchandise and branded goods that reflect your brand's sophistication.", url: "https://seveneightcreative.com", siteName: "Seven Eight Creative", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Seven Eight Creative", description: "Promotional Products Designed Differently"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}