From 25224fd1006f8d3f0cb062caa908fa113ddcbfdc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:17:12 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 137 +++++++++-------------------------------- 1 file changed, 28 insertions(+), 109 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e8a35ea..e2000f6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -4,15 +4,13 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; -import ContactText from "@/components/sections/contact/ContactText"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Award, Star } from "lucide-react"; +import { Award } from "lucide-react"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "About", id: "/about" }, + { name: "How It Works", id: "/how-it-works" }, { name: "Products", id: "/products" }, { name: "Contact", id: "/contact" }, ]; @@ -24,7 +22,7 @@ export default function AboutPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="largeSmallSizeMediumTitles" - background="noiseDiagonalGradient" + background="circleGradient" cardStyle="outline" primaryButtonStyle="shadow" secondaryButtonStyle="solid" @@ -32,102 +30,26 @@ export default function AboutPage() { >
-
- -
- -
- -
-
@@ -136,36 +58,33 @@ export default function AboutPage() { ); -} \ No newline at end of file +} -- 2.49.1 From cf5e5110b3513830a9d6070fe3e4b685fda40869 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:17:13 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f483ebe..af6a654 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Sell Your Products Online - Home Business Platform", description: "Start selling online today. A platform designed for home-based businesses to reach customers worldwide. Easy to use, powerful tools, and complete support.", keywords: "sell online, home business, e-commerce, small business, online store", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Sell Your Products Online - Home Business Platform", description: "Start selling online today. A platform for home-based businesses to reach customers worldwide.", type: "website", siteName: "HomeSellerHub", images: [ - { - url: "http://img.b2bpic.net/free-photo/couch-with-cushions-glass-table_1203-764.jpg", alt: "Home Business Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sell Your Products Online - Home Business Platform", description: "Start selling online today from home.", images: ["http://img.b2bpic.net/free-photo/couch-with-cushions-glass-table_1203-764.jpg"], - }, -}; + title: "HomeSellerHub", description: "Start selling your products online today with HomeSellerHub"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}