diff --git a/src/app/globals.css b/src/app/globals.css
index 40b5df4..64e6a3e 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
- --background: #fbfaff;;
- --card: #f7f5ff;;
- --foreground: #0f0022;;
- --primary-cta: #8b5cf6;;
+ --background: #ffffff;;
+ --card: #fcfcfc;;
+ --foreground: #000000e6;;
+ --primary-cta: #1a1a1a;;
--secondary-cta: #ffffff;;
- --accent: #d8cef5;;
- --background-accent: #c4a8f9;;
+ --accent: #bebebe;;
+ --background-accent: #c4c4c4;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
- font-family: var(--font-space-grotesk), sans-serif;
+ font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
- font-family: var(--font-space-grotesk), sans-serif;
+ font-family: var(--font-poppins), sans-serif;
}
\ No newline at end of file
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 31d0f65..0fdbef8 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,33 +1,34 @@
import type { Metadata } from "next";
-import { Space_Grotesk } from "next/font/google";
+import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
-const spaceGrotesk = Space_Grotesk({
- variable: "--font-space-grotesk",
+const poppins = Poppins({
+ variable: "--font-poppins",
subsets: ["latin"],
+ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
- title: "AffiliateHub - Earn More with Affiliate Marketing",
- description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support.",
- keywords: ["affiliate marketing", "earn money", "affiliate program", "commission tracking", "marketing platform"],
- metadataBase: new URL("https://affiliatehub.com"),
+ title: "Fashion Forward - Premium Clothing Collection",
+ description: "Discover our curated collection of premium clothing. High-quality fabrics, modern designs, and timeless styles for every occasion.",
+ keywords: ["fashion", "clothing", "premium wear", "designer clothes", "style"],
+ metadataBase: new URL("https://fashionforward.com"),
alternates: {
- canonical: "https://affiliatehub.com"
+ canonical: "https://fashionforward.com"
},
openGraph: {
- title: "AffiliateHub - Earn More with Affiliate Marketing",
- description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support.",
- url: "https://affiliatehub.com",
- siteName: "AffiliateHub",
+ title: "Fashion Forward - Premium Clothing Collection",
+ description: "Discover our curated collection of premium clothing. High-quality fabrics, modern designs, and timeless styles for every occasion.",
+ url: "https://fashionforward.com",
+ siteName: "Fashion Forward",
type: "website"
},
twitter: {
card: "summary_large_image",
- title: "AffiliateHub - Earn More with Affiliate Marketing",
- description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support."
+ title: "Fashion Forward - Premium Clothing Collection",
+ description: "Discover our curated collection of premium clothing. High-quality fabrics, modern designs, and timeless styles for every occasion."
}
};
@@ -40,7 +41,7 @@ export default function RootLayout({
{children}
@@ -1266,4 +1267,4 @@ export default function RootLayout({
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9966876..d0f414c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,290 +1,289 @@
-"use client"
+"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
-import HeroLogoCarousel from '@/components/sections/hero/HeroLogoCarousel';
-import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
-import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen';
-import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
-import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
-import ContactFaq from '@/components/sections/contact/ContactFaq';
-import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial';
-import { Phone, Twitter, Linkedin, Facebook, Youtube } from 'lucide-react';
+import HeroSplitAvatars from '@/components/sections/hero/HeroSplitAvatars';
+import ProductCardOne from '@/components/sections/product/ProductCardOne';
+import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
+import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
+import FaqSplitText from '@/components/sections/faq/FaqSplitText';
+import ContactCenter from '@/components/sections/contact/ContactCenter';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+import { Mail, Heart, ShoppingBag } from 'lucide-react';
export default function LandingPage() {
return (
-
+
+
+
-
-
-
-
-
-
-
+
-
-
+
-
);
-}
\ No newline at end of file
+}