From 0defcc3ca71acc9daa48eb05f3e807ff1fc4595a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:15:38 +0000 Subject: [PATCH 1/7] Add src/app/about/page.tsx --- src/app/about/page.tsx | 124 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 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..10553de --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,124 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import TextAbout from "@/components/sections/about/TextAbout"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import TeamCardSix from "@/components/sections/team/TeamCardSix"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Users } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From f09a9d50338549cc044e33413af1222658a5cf1a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:15:38 +0000 Subject: [PATCH 2/7] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 77 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 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..4c4e099 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,77 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import TextAbout from "@/components/sections/about/TextAbout"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From dacd6559c31afed04105489789c2221cd9784d54 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:15:39 +0000 Subject: [PATCH 3/7] Update src/app/layout.tsx --- src/app/layout.tsx | 42 +++++++----------------------------------- 1 file changed, 7 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b276c0c..203ccda 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,24 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Thor Creations | Creative Design & Development Agency", description: "Transform your ideas into powerful digital experiences. Creative design, strategic digital solutions, and expert development for businesses.", keywords: "design agency, web development, digital strategy, creative studio, brand transformation", metadataBase: new URL("https://thorcreations.com"), - alternates: { - canonical: "https://thorcreations.com"}, - openGraph: { - title: "Thor Creations | Creative Design & Development Agency", description: "Expert creative and technical solutions for digital transformation and brand excellence.", url: "https://thorcreations.com", siteName: "Thor Creations", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUwrsHiRXf8t31fiLqgeFrhEAX/uploaded-1772676089221-ibtouv31.jpg", alt: "Thor Creations - Creative & Development Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Thor Creations | Creative Design & Development", description: "Transform your vision with exceptional design and development solutions.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUwrsHiRXf8t31fiLqgeFrhEAX/uploaded-1772676089221-ibtouv31.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Thor Creations - Custom Vinyl Decals & Branded Merchandise", description: "Professional custom vinyl decals, branded merchandise, and design solutions for small business owners and contractors."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}