Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d6fa6014c | |||
| 20599890a8 | |||
| 66f0a0a75a | |||
| 33c3baed7c | |||
| 26b9970db5 | |||
| f61edf9782 | |||
| 4200728a95 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fbfaff;;
|
--background: #ffffff;;
|
||||||
--card: #f7f5ff;;
|
--card: #fcfcfc;;
|
||||||
--foreground: #0f0022;;
|
--foreground: #000000e6;;
|
||||||
--primary-cta: #8b5cf6;;
|
--primary-cta: #1a1a1a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #d8cef5;;
|
--accent: #bebebe;;
|
||||||
--background-accent: #c4a8f9;;
|
--background-accent: #c4c4c4;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-space-grotesk), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-space-grotesk), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,33 +1,34 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Space_Grotesk } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const spaceGrotesk = Space_Grotesk({
|
const poppins = Poppins({
|
||||||
variable: "--font-space-grotesk",
|
variable: "--font-poppins",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AffiliateHub - Earn More with Affiliate Marketing",
|
title: "Cooking - Culinary Excellence",
|
||||||
description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support.",
|
description: "Discover recipes, cooking tips, and culinary inspiration from our community of passionate cooks.",
|
||||||
keywords: ["affiliate marketing", "earn money", "affiliate program", "commission tracking", "marketing platform"],
|
keywords: ["cooking", "recipes", "culinary", "food", "kitchen"],
|
||||||
metadataBase: new URL("https://affiliatehub.com"),
|
metadataBase: new URL("https://cooking.com"),
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "https://affiliatehub.com"
|
canonical: "https://cooking.com"
|
||||||
},
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "AffiliateHub - Earn More with Affiliate Marketing",
|
title: "Cooking - Culinary Excellence",
|
||||||
description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support.",
|
description: "Discover recipes, cooking tips, and culinary inspiration from our community of passionate cooks.",
|
||||||
url: "https://affiliatehub.com",
|
url: "https://cooking.com",
|
||||||
siteName: "AffiliateHub",
|
siteName: "Cooking",
|
||||||
type: "website"
|
type: "website"
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image",
|
card: "summary_large_image",
|
||||||
title: "AffiliateHub - Earn More with Affiliate Marketing",
|
title: "Cooking - Culinary Excellence",
|
||||||
description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support."
|
description: "Discover recipes, cooking tips, and culinary inspiration from our community of passionate cooks."
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -40,7 +41,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={spaceGrotesk.variable}
|
className={poppins.variable}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1266,4 +1267,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
318
src/app/page.tsx
318
src/app/page.tsx
@@ -1,290 +1,290 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import HeroLogoCarousel from '@/components/sections/hero/HeroLogoCarousel';
|
import HeroSplitAvatars from '@/components/sections/hero/HeroSplitAvatars';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen';
|
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||||
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import { Phone, Twitter, Linkedin, Facebook, Youtube } from 'lucide-react';
|
import { Mail, ChefHat, Book } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="expand-hover"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="smallMedium"
|
contentWidth="medium"
|
||||||
sizing="mediumSizeLargeTitles"
|
sizing="mediumLarge"
|
||||||
background="floatingGradient"
|
background="none"
|
||||||
cardStyle="inset"
|
cardStyle="solid-accent"
|
||||||
primaryButtonStyle="shadow"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="AffiliateHub"
|
brandName="Cooking"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Recipes", id: "shop" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "Techniques", id: "about" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Guides", id: "collections" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Reviews", id: "reviews" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{ text: "Subscribe", href: "contact" }}
|
||||||
text: "Get Started",
|
|
||||||
href: "contact"
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoCarousel
|
<HeroSplitAvatars
|
||||||
logoText="AffiliateHub"
|
title="Master the Art of Cooking"
|
||||||
description="Unlock your earning potential with our cutting-edge affiliate marketing platform. Get real-time tracking, advanced analytics, and dedicated support to scale your affiliate business."
|
description="Learn from expert chefs, discover incredible recipes, and transform your kitchen skills. Join thousands of passionate cooks in our community."
|
||||||
mediaItems={[
|
tag="Culinary Excellence"
|
||||||
{
|
tagIcon={ChefHat}
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983288368-py19hzaj.jpg",
|
imagePosition="right"
|
||||||
imageAlt: "Affiliate marketing success dashboard"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983288368-py19hzaj.jpg"
|
||||||
},
|
imageAlt="Cooking inspiration"
|
||||||
|
avatars={[
|
||||||
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766399072529-1z8sle2r.jpg", alt: "Chef 1" },
|
||||||
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140153329-bmp1nqc3.jpg", alt: "Chef 2" },
|
||||||
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766318234070-3a71e283.jpg", alt: "Chef 3" },
|
||||||
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184201718-hfojd9bk.jpg", alt: "Chef 4" },
|
||||||
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766787044450-9f4y10ts.jpg", alt: "Chef 5" }
|
||||||
|
]}
|
||||||
|
avatarText="Join 50,000+ cooking enthusiasts"
|
||||||
|
buttons={[
|
||||||
|
{ text: "Explore Recipes", href: "shop" },
|
||||||
|
{ text: "Learn More", href: "collections" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="shop" data-section="shop">
|
||||||
|
<ProductCardOne
|
||||||
|
title="Featured Recipes"
|
||||||
|
description="Discover our handpicked collection of delicious recipes from around the world. Each recipe is tested and perfected by our culinary team."
|
||||||
|
tag="Popular"
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
products={[
|
||||||
{
|
{
|
||||||
|
id: "1",
|
||||||
|
name: "Homemade Pasta Carbonara",
|
||||||
|
price: "Easy",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766787041844-tzssa0wc.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766787041844-tzssa0wc.jpg",
|
||||||
imageAlt: "Marketing analytics and performance metrics"
|
imageAlt: "Pasta Carbonara",
|
||||||
|
isFavorited: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
id: "2",
|
||||||
|
name: "Spicy Thai Curry",
|
||||||
|
price: "Medium",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983289277-elw8ical.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983289277-elw8ical.jpg",
|
||||||
imageAlt: "Collaborative marketing team working together"
|
imageAlt: "Thai Curry",
|
||||||
|
isFavorited: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
id: "3",
|
||||||
|
name: "Classic French Beef Stew",
|
||||||
|
price: "Medium",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983290082-rq47q3ut.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983290082-rq47q3ut.jpg",
|
||||||
imageAlt: "Earning potential and financial growth"
|
imageAlt: "Beef Stew",
|
||||||
|
isFavorited: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
id: "4",
|
||||||
|
name: "Gourmet Seafood Risotto",
|
||||||
|
price: "Advanced",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983291397-8uh3i1cf.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983291397-8uh3i1cf.jpg",
|
||||||
imageAlt: "Network and partnership connections"
|
imageAlt: "Seafood Risotto",
|
||||||
|
isFavorited: false
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<FeatureCardThree
|
||||||
heading={[
|
title="Why Cook With Us"
|
||||||
{ type: "text", content: "Empowering Marketers Since 2015" },
|
description="We provide everything you need to succeed in the kitchen, from detailed recipes to expert guidance and community support."
|
||||||
{
|
tag="Our Approach"
|
||||||
type: "image",
|
|
||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766787044450-9f4y10ts.jpg",
|
|
||||||
alt: "AffiliateHub team"
|
|
||||||
},
|
|
||||||
{ type: "text", content: "to maximize their earnings" }
|
|
||||||
]}
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
buttons={[
|
|
||||||
{ text: "Learn More", href: "#features" }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
|
||||||
<FeatureCardFifteen
|
|
||||||
title="Everything You Need to Succeed"
|
|
||||||
description="Our comprehensive platform provides all the tools and features you need to build, manage, and scale your affiliate marketing business."
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
title: "Real-Time Analytics",
|
title: "Expert Recipes",
|
||||||
description: "Track every click, conversion, and commission in real-time with our advanced analytics dashboard.",
|
description: "Curated recipes from professional chefs with detailed instructions and ingredient sourcing tips.",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983292413-wq7r64pm.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983292413-wq7r64pm.jpg",
|
||||||
imageAlt: "Analytics dashboard interface"
|
imageAlt: "Expert recipes"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
title: "Marketing Automation",
|
title: "Cooking Techniques",
|
||||||
description: "Automate your campaigns and reach your audience at scale with our intelligent marketing tools.",
|
description: "Master fundamental techniques that will improve your cooking across all cuisines and styles.",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766787045743-6gjau4zf.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766787045743-6gjau4zf.jpg",
|
||||||
imageAlt: "Marketing automation workflow"
|
imageAlt: "Cooking techniques"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
title: "Commission Tracking",
|
title: "Community Support",
|
||||||
description: "Transparent commission tracking with instant payouts and detailed payment history.",
|
description: "Connect with fellow cooking enthusiasts, share your creations, and get feedback from the community.",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983293269-qul9w8a9.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983293269-qul9w8a9.jpg",
|
||||||
imageAlt: "Commission tracking system"
|
imageAlt: "Community support"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
title: "24/7 Support",
|
title: "Ingredient Guides",
|
||||||
description: "Dedicated support team available round the clock to help you succeed.",
|
description: "Learn about sourcing quality ingredients, understanding flavor profiles, and seasonal cooking.",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983294082-ngjm8l0d.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766983294082-ngjm8l0d.jpg",
|
||||||
imageAlt: "Customer support team"
|
imageAlt: "Ingredient guides"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="reviews" data-section="reviews">
|
||||||
<TestimonialCardEight
|
<TestimonialCardOne
|
||||||
title="Success Stories from Our Affiliates"
|
title="What Our Community Says"
|
||||||
description="See how our platform has helped thousands of marketers grow their income and build sustainable businesses."
|
description="Hear from passionate cooks who have improved their culinary skills through our recipes and guides."
|
||||||
|
tag="Success Stories"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
name: "Sarah Mitchell",
|
name: "Julia Anderson",
|
||||||
role: "Digital Marketer",
|
role: "Home Chef",
|
||||||
company: "Growth Marketing Co",
|
company: "Cooking Enthusiast",
|
||||||
rating: 5,
|
rating: 5,
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766399072529-1z8sle2r.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766399072529-1z8sle2r.jpg",
|
||||||
imageAlt: "Sarah Mitchell portrait"
|
imageAlt: "Julia Anderson"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
name: "James Chen",
|
name: "Marco Rossi",
|
||||||
role: "Marketing Manager",
|
role: "Professional Chef",
|
||||||
company: "Tech Solutions Inc",
|
company: "Michelin Restaurant",
|
||||||
rating: 5,
|
rating: 5,
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140153329-bmp1nqc3.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140153329-bmp1nqc3.jpg",
|
||||||
imageAlt: "James Chen portrait"
|
imageAlt: "Marco Rossi"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
name: "Emma Johnson",
|
name: "Sophie Chen",
|
||||||
role: "Affiliate Director",
|
role: "Food Blogger",
|
||||||
company: "Online Ventures",
|
company: "Culinary Chronicles",
|
||||||
rating: 5,
|
rating: 5,
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766318234070-3a71e283.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766318234070-3a71e283.jpg",
|
||||||
imageAlt: "Emma Johnson portrait"
|
imageAlt: "Sophie Chen"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
name: "Michael Rodriguez",
|
name: "David Williams",
|
||||||
role: "Independent Affiliate",
|
role: "Cooking Instructor",
|
||||||
company: "Digital Entrepreneurs",
|
company: "Culinary Academy",
|
||||||
rating: 5,
|
rating: 5,
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184201718-hfojd9bk.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184201718-hfojd9bk.jpg",
|
||||||
imageAlt: "Michael Rodriguez portrait"
|
imageAlt: "David Williams"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="collections" data-section="collections">
|
||||||
<FaqSplitMedia
|
<FaqSplitText
|
||||||
title="Common Questions About Affiliate Marketing"
|
sideTitle="Cooking Questions Answered"
|
||||||
description="Find answers to frequently asked questions about our platform and affiliate program."
|
sideDescription="Find answers to common cooking questions, ingredient substitutions, and kitchen tips."
|
||||||
textboxLayout="default"
|
textPosition="left"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140104217-wfflli6f.jpg"
|
|
||||||
imageAlt="Customer support team helping affiliates"
|
|
||||||
mediaPosition="left"
|
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
title: "How much can I earn as an affiliate?",
|
title: "How do I choose the right ingredients?",
|
||||||
content: "Earnings depend on your marketing efforts and the products you promote. Our top affiliates earn $5,000+ per month. We offer competitive commission rates ranging from 15% to 40% depending on the product tier."
|
content: "Quality ingredients are crucial for great cooking. Look for fresh, seasonal produce and high-grade pantry staples. Our ingredient guides help you understand what to look for at the market."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
title: "How often do I get paid?",
|
title: "What are essential cooking techniques?",
|
||||||
content: "We offer flexible payment schedules. Choose weekly, bi-weekly, or monthly payouts. Payments are processed automatically to your preferred payment method with no hidden fees."
|
content: "Master techniques like sautéing, braising, roasting, and emulsifying. These fundamental skills apply across cuisines and will transform your cooking abilities. Check our techniques section for detailed tutorials."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
title: "What marketing materials are provided?",
|
title: "How do I meal plan effectively?",
|
||||||
content: "We provide banners, landing pages, email templates, social media graphics, and video assets. All materials are professionally designed and ready to use."
|
content: "Plan your meals around seasonal ingredients and cooking methods. Group recipes by preparation time and complexity. Our community shares meal plans and shopping lists to make it easier."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
title: "Do I need experience to get started?",
|
title: "What equipment do I really need?",
|
||||||
content: "No experience necessary! We provide training, resources, and dedicated support to help you succeed, whether you're a seasoned marketer or just starting out."
|
content: "Start with quality basics: sharp knives, heavy cookware, and proper mixing bowls. You don't need expensive gadgets. Our equipment guides focus on versatile tools that last."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5",
|
||||||
title: "What's your cookie duration?",
|
title: "How do I develop my cooking style?",
|
||||||
content: "We offer a 45-day cookie window, giving you plenty of time to convert your referred customers. This is one of the longest in the industry."
|
content: "Experiment with recipes, taste as you cook, and understand flavor combinations. Read cooking blogs, watch tutorials, and practice regularly. Your unique style develops naturally over time."
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactFaq
|
<ContactCenter
|
||||||
ctaTitle="Ready to Start Earning?"
|
tag="Join Us"
|
||||||
ctaDescription="Join thousands of successful affiliates. Book a call with our team to discuss your affiliate marketing goals."
|
title="Get Cooking Inspiration"
|
||||||
ctaButton={{
|
description="Subscribe to our newsletter for weekly recipes, cooking tips, ingredient spotlights, and exclusive community access."
|
||||||
text: "Book a Free Call",
|
tagIcon={Mail}
|
||||||
href: "contact"
|
|
||||||
}}
|
|
||||||
ctaIcon={Phone}
|
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
animationType="slide-up"
|
inputPlaceholder="Enter your email address"
|
||||||
faqs={[
|
buttonText="Subscribe"
|
||||||
{
|
termsText="We respect your privacy. Unsubscribe anytime. No spam, ever."
|
||||||
id: "1",
|
|
||||||
title: "What's the application process?",
|
|
||||||
content: "Simply fill out our affiliate application form. We review applications within 24 hours. Most qualified marketers are approved immediately."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Are there any fees to join?",
|
|
||||||
content: "Absolutely not! Joining our affiliate program is completely free. There are no setup fees, monthly fees, or hidden charges."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "Can I promote multiple products?",
|
|
||||||
content: "Yes! We encourage our affiliates to promote multiple products from our catalog. This diversifies your income streams and maximizes earning potential."
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseSocial
|
<FooterLogoEmphasis
|
||||||
logoText="AffiliateHub"
|
|
||||||
description="Empower your affiliate marketing business with tools designed for success. Join our community of top earners today."
|
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Platform",
|
|
||||||
items: [
|
items: [
|
||||||
{ label: "Dashboard", href: "#" },
|
{ label: "Latest Recipes", href: "shop" },
|
||||||
{ label: "Analytics", href: "#" },
|
{ label: "Popular Recipes", href: "shop" },
|
||||||
{ label: "Resources", href: "#" }
|
{ label: "Trending Now", href: "shop" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
|
||||||
items: [
|
items: [
|
||||||
{ label: "About Us", href: "about" },
|
{ label: "Techniques", href: "about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Ingredient Guide", href: "about" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Kitchen Basics", href: "about" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Contact", href: "contact" },
|
||||||
|
{ label: "Support", href: "contact" },
|
||||||
|
{ label: "Submit Recipe", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
|
||||||
items: [
|
items: [
|
||||||
{ label: "Terms of Service", href: "#" },
|
|
||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "#" },
|
||||||
{ label: "Contact", href: "contact" }
|
{ label: "Terms of Service", href: "#" },
|
||||||
|
{ label: "Cookie Policy", href: "#" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
socialLinks={[
|
logoText="Cooking"
|
||||||
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
|
|
||||||
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
|
|
||||||
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
|
|
||||||
{ icon: Youtube, href: "https://youtube.com", ariaLabel: "YouTube" }
|
|
||||||
]}
|
|
||||||
copyrightText="© 2025 AffiliateHub. All rights reserved."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user