From 199181e73d28953705e1e874ebdd61a3311d6754 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 22:05:40 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5eafa31..ff93ccf 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -81,7 +81,7 @@ export default function AboutPage() { tag="OUR STORY" tagIcon="BookOpen" tagAnimation="slide-up" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBYQgtJ9yLuyhx1NTCmh6Q6fe2/a-modern-clean-tech-warehouse-or-distrib-1774130684357-435b1611.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBYQgtJ9yLuyhx1NTCmh6Q6fe2/a-modern-clean-tech-warehouse-or-distrib-1774130684357-435b1611.png?_wi=2" imageAlt="TechHub warehouse and distribution center" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From 400894b74393d05cd87889db30288c09c8ef7762 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 22:05:41 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 20f31b6..2e16c8e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -104,7 +104,7 @@ export default function ContactPage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBYQgtJ9yLuyhx1NTCmh6Q6fe2/a-professional-customer-service-represen-1774130683746-271b8d68.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBYQgtJ9yLuyhx1NTCmh6Q6fe2/a-professional-customer-service-represen-1774130683746-271b8d68.png?_wi=2" imageAlt="Customer support team" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 8e21471717f1d29bc612b4a00e9475c5de1f9bd0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 22:05:41 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..4973ae5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Nunito_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "TechHub - Premium Tech Gadgets & Electronics in Ghana", + description: "Shop the latest smartphones, laptops, wearables, and tech accessories at TechHub. Authentic products, competitive prices, and 24/7 customer support. Fast delivery across Ghana.", + keywords: "tech gadgets, smartphones, laptops, electronics, Ghana, authentic products", + metadataBase: new URL("https://techhub.com.gh"), + alternates: { + canonical: "https://techhub.com.gh", + }, + openGraph: { + title: "TechHub - Premium Tech Gadgets", + description: "Discover cutting-edge technology at unbeatable prices. Authentic products with warranty.", + url: "https://techhub.com.gh", + siteName: "TechHub", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBYQgtJ9yLuyhx1NTCmh6Q6fe2/a-sleek-and-modern-tech-gadgets-display--1774130683549-9cd48365.png", + alt: "TechHub - Premium Tech Gadgets", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "TechHub - Premium Tech Gadgets", + description: "Shop authentic tech gadgets with warranty and fast delivery in Ghana.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BBYQgtJ9yLuyhx1NTCmh6Q6fe2/a-sleek-and-modern-tech-gadgets-display--1774130683549-9cd48365.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}