diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 9c3913b..4c7ec09 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -12,7 +12,7 @@ import { Building2, Award } from "lucide-react"; export default function ContactPage() { 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" }, ]; @@ -32,19 +32,19 @@ export default function ContactPage() { >
@@ -70,12 +70,12 @@ export default function ContactPage() {
); -} \ No newline at end of file +} diff --git a/src/app/how-it-works/page.tsx b/src/app/how-it-works/page.tsx new file mode 100644 index 0000000..8a54d83 --- /dev/null +++ b/src/app/how-it-works/page.tsx @@ -0,0 +1,131 @@ +"use client"; + +import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Sparkles, ArrowRight } from "lucide-react"; + +export default function HowItWorksPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "How It Works", id: "/how-it-works" }, + { name: "Products", id: "/products" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c2b654c..f483ebe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,47 +7,32 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], + variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); const interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], + variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Premium Sustainable Furniture - FurniturePro", - description: "Discover eco-friendly, premium furniture designed for modern living. Sustainable craftsmanship meets contemporary style at FurniturePro.", - keywords: "furniture, sustainable, eco-friendly, premium, modern design, home decor", - robots: { + 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: "Premium Sustainable Furniture - FurniturePro", - description: "Discover eco-friendly, premium furniture designed for modern living. Sustainable craftsmanship meets contemporary style.", - type: "website", - siteName: "FurniturePro", - images: [ + 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: "FurniturePro Premium Furniture Collection", - }, + 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: "Premium Sustainable Furniture - FurniturePro", - description: "Discover eco-friendly, premium furniture for modern living.", - images: ["http://img.b2bpic.net/free-photo/couch-with-cushions-glass-table_1203-764.jpg"], + 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"], }, }; @@ -1435,4 +1420,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index e021fd4..67e9b65 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,7 +16,7 @@ import { Sparkles, Award, CheckCircle, ArrowRight, Zap, Star, Building2 } from " export default function HomePage() { 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" }, ]; @@ -36,25 +36,25 @@ export default function HomePage() { >
@@ -80,32 +80,20 @@ export default function HomePage() {
); -} \ No newline at end of file +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 6430be6..7550202 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -12,7 +12,7 @@ import { ArrowRight, CheckCircle } from "lucide-react"; export default function ProductsPage() { 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" }, ]; @@ -32,50 +32,30 @@ export default function ProductsPage() { >
); -} \ No newline at end of file +}