Update src/app/page.tsx
This commit is contained in:
475
src/app/page.tsx
475
src/app/page.tsx
@@ -27,359 +27,144 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Catalog",
|
||||
id: "#catalog",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "#pricing",
|
||||
},
|
||||
]}
|
||||
brandName="Book Papers"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Catalog", id: "#catalog" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
]}
|
||||
brandName="Book Papers"
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="The Art of Exceptional Book Paper"
|
||||
description="Elevate your publications with our premium, archival-grade papers designed for authors, publishers, and bibliophiles."
|
||||
kpis={[
|
||||
{
|
||||
value: "500+",
|
||||
label: "Paper Types",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Archival Quality",
|
||||
},
|
||||
{
|
||||
value: "25k+",
|
||||
label: "Projects Completed",
|
||||
},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-flimsy-paper-with-wooden-background_23-2148252364.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/faded-blue-ink-paper_53876-94357.jpg",
|
||||
alt: "Faded blue ink on paper",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-different-paper-sheets_23-2148187878.jpg",
|
||||
alt: "Top view of different paper sheets",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-felt-fabric-pieces_23-2149447360.jpg",
|
||||
alt: "View of felt fabric pieces",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/invitation-design-wood-table_23-2148252389.jpg",
|
||||
alt: "Invitation design on wood table",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/flat-lay-flimsy-paper-with-wooden-background_23-2148252364.jpg",
|
||||
alt: "textured paper samples close up",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Sustainable",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Archival",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Premium",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Artisan",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Refined",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "plain" }}
|
||||
title="The Art of Exceptional Book Paper"
|
||||
description="Elevate your publications with our premium, archival-grade papers designed for authors, publishers, and bibliophiles."
|
||||
kpis={[
|
||||
{ value: "500+", label: "Paper Types" },
|
||||
{ value: "100%", label: "Archival Quality" },
|
||||
{ value: "25k+", label: "Projects Completed" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-flimsy-paper-with-wooden-background_23-2148252364.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/faded-blue-ink-paper_53876-94357.jpg", alt: "Faded blue ink on paper" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/top-view-different-paper-sheets_23-2148187878.jpg", alt: "Top view of different paper sheets" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/view-felt-fabric-pieces_23-2149447360.jpg", alt: "View of felt fabric pieces" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/invitation-design-wood-table_23-2148252389.jpg", alt: "Invitation design on wood table" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/flat-lay-flimsy-paper-with-wooden-background_23-2148252364.jpg", alt: "textured paper samples close up" }
|
||||
]}
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Sustainable" },
|
||||
{ type: "text", text: "Archival" },
|
||||
{ type: "text", text: "Premium" },
|
||||
{ type: "text", text: "Artisan" },
|
||||
{ type: "text", text: "Refined" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Crafting the Soul of Every Page"
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Heritage",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Crafting the Soul of Every Page"
|
||||
buttons={[{ text: "Our Heritage", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="catalog" data-section="catalog">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Classic Literary Cream",
|
||||
price: "$12.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-interior-designer_23-2150346534.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Matte Fine Literature",
|
||||
price: "$15.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/detail-vintage-old-book-white-background_23-2147951301.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Art Series Glossy",
|
||||
price: "$22.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smooth-gray-background_53876-102735.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Sustainable Recycled",
|
||||
price: "$10.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brown-texture_1253-176.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Vellum Grain Fine",
|
||||
price: "$18.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-cloth-with-red-spots_1154-640.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Heavy Duty Cover",
|
||||
price: "$25.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-12860.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Signature Collections"
|
||||
description="Explore our curated range of paper stocks, from light literary cream to thick, durable cover materials."
|
||||
/>
|
||||
</div>
|
||||
<div id="catalog" data-section="catalog">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "p1", name: "Classic Literary Cream", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-working-as-interior-designer_23-2150346534.jpg" },
|
||||
{ id: "p2", name: "Matte Fine Literature", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/detail-vintage-old-book-white-background_23-2147951301.jpg" },
|
||||
{ id: "p3", name: "Art Series Glossy", price: "$22.00", imageSrc: "http://img.b2bpic.net/free-photo/smooth-gray-background_53876-102735.jpg" },
|
||||
{ id: "p4", name: "Sustainable Recycled", price: "$10.00", imageSrc: "http://img.b2bpic.net/free-photo/brown-texture_1253-176.jpg" },
|
||||
{ id: "p5", name: "Vellum Grain Fine", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/white-cloth-with-red-spots_1154-640.jpg" },
|
||||
{ id: "p6", name: "Heavy Duty Cover", price: "$25.00", imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-12860.jpg" }
|
||||
]}
|
||||
title="Our Signature Collections"
|
||||
description="Explore our curated range of paper stocks, from light literary cream to thick, durable cover materials."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "starter",
|
||||
badge: "Essential",
|
||||
price: "$199",
|
||||
subtitle: "For small projects",
|
||||
features: [
|
||||
"Sample Kits",
|
||||
"Flat Shipping",
|
||||
"Bulk Discounts",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
badge: "Popular",
|
||||
price: "$499",
|
||||
subtitle: "Best for publishers",
|
||||
features: [
|
||||
"Priority Stock",
|
||||
"Custom GSM",
|
||||
"Dedicated Account",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
badge: "Custom",
|
||||
price: "Contact Us",
|
||||
subtitle: "Large scale needs",
|
||||
features: [
|
||||
"Global Logistics",
|
||||
"Paper Engineering",
|
||||
"Full Integration",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Flexible Sourcing Options"
|
||||
description="Whether you are a boutique press or a large publisher, we offer scalable pricing tailored to your scale."
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "starter", badge: "Essential", price: "$199", subtitle: "For small projects", features: ["Sample Kits", "Flat Shipping", "Bulk Discounts"] },
|
||||
{ id: "pro", badge: "Popular", price: "$499", subtitle: "Best for publishers", features: ["Priority Stock", "Custom GSM", "Dedicated Account"] },
|
||||
{ id: "enterprise", badge: "Custom", price: "Contact Us", subtitle: "Large scale needs", features: ["Global Logistics", "Paper Engineering", "Full Integration"] }
|
||||
]}
|
||||
title="Flexible Sourcing Options"
|
||||
description="Whether you are a boutique press or a large publisher, we offer scalable pricing tailored to your scale."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={true}
|
||||
title="Trusted by Industry Leaders"
|
||||
tag="Quality Assured"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "99%",
|
||||
description: "Customer Satisfaction",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "24h",
|
||||
description: "Processing Time",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "150+",
|
||||
description: "International Partners",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={true}
|
||||
title="Trusted by Industry Leaders"
|
||||
tag="Quality Assured"
|
||||
metrics={[
|
||||
{ id: "m1", value: "99%", description: "Customer Satisfaction" },
|
||||
{ id: "m2", value: "24h", description: "Processing Time" },
|
||||
{ id: "m3", value: "150+", description: "International Partners" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Elena Vance",
|
||||
role: "Head Publisher",
|
||||
company: "Inkbound Press",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adult-reading-book-home_23-2149492013.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mark Sterling",
|
||||
role: "Creative Director",
|
||||
company: "Vellum Studio",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-vintage-portrait_23-2150795112.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Sarah Jenkins",
|
||||
role: "Owner",
|
||||
company: "PageTurner Books",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-developing-photographs_23-2149894032.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David Thorne",
|
||||
role: "Production Manager",
|
||||
company: "Apex Press",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-diverse-staff-collaborating-data-forecasting-analysis-exchanging-documents-late_482257-136503.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Chloe Miller",
|
||||
role: "Senior Editor",
|
||||
company: "Classic Editions",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cmyk-toners-composition_23-2149120700.jpg",
|
||||
},
|
||||
]}
|
||||
title="Words from the Presses"
|
||||
description="Don't just take our word for it—see what the leading independent publishers and creative directors have to say."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Elena Vance", role: "Head Publisher", company: "Inkbound Press", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/adult-reading-book-home_23-2149492013.jpg" },
|
||||
{ id: "t2", name: "Mark Sterling", role: "Creative Director", company: "Vellum Studio", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-vintage-portrait_23-2150795112.jpg" },
|
||||
{ id: "t3", name: "Sarah Jenkins", role: "Owner", company: "PageTurner Books", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-developing-photographs_23-2149894032.jpg" },
|
||||
{ id: "t4", name: "David Thorne", role: "Production Manager", company: "Apex Press", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-diverse-staff-collaborating-data-forecasting-analysis-exchanging-documents-late_482257-136503.jpg" },
|
||||
{ id: "t5", name: "Chloe Miller", role: "Senior Editor", company: "Classic Editions", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/still-life-cmyk-toners-composition_23-2149120700.jpg" }
|
||||
]}
|
||||
title="Words from the Presses"
|
||||
description="Don't just take our word for it—see what the leading independent publishers and creative directors have to say."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
text="Ready to bring your manuscripts to life with the perfect paper? Connect with our material experts today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Our Team",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
text="Ready to bring your manuscripts to life with the perfect paper? Connect with our material experts today."
|
||||
buttons={[{ text: "Contact Our Team", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{
|
||||
label: "Our Process",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Sustainability",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Catalog",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Wholesale",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Book Papers"
|
||||
copyrightText="© 2025 | Book Papers, Inc."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Resources", items: [{ label: "Our Process", href: "#" }, { label: "Sustainability", href: "#" }, { label: "Catalog", href: "#" }] },
|
||||
{ title: "Support", items: [{ label: "Contact Us", href: "#" }, { label: "FAQ", href: "#" }, { label: "Wholesale", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
||||
]}
|
||||
logoText="Book Papers"
|
||||
copyrightText="© 2025 | Book Papers, Inc."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user