Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
204
src/app/page.tsx
204
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Blog",
|
||||
id: "blog",
|
||||
},
|
||||
name: "Blog", id: "blog"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Ink & Insight"
|
||||
/>
|
||||
@@ -55,47 +47,26 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Uncovering Stories in the Everyday"
|
||||
description="Join our community of thinkers, dreamers, and writers exploring the depth of human experience through thoughtful analysis and inspired storytelling."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Reading",
|
||||
href: "#blog",
|
||||
},
|
||||
text: "Start Reading", href: "#blog"},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-enjoying-reading-book-cafe_23-2150064719.jpg",
|
||||
imageAlt: "Writing desk",
|
||||
},
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/person-enjoying-reading-book-cafe_23-2150064719.jpg", imageAlt: "Writing desk"},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/desk-office-with-objects_23-2147982283.jpg",
|
||||
imageAlt: "Notebook",
|
||||
},
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/desk-office-with-objects_23-2147982283.jpg", imageAlt: "Notebook"},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-laptop-eyeglasses-spiral-notepad-leaves-white-desk_23-2148178627.jpg",
|
||||
imageAlt: "Study room",
|
||||
},
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-laptop-eyeglasses-spiral-notepad-leaves-white-desk_23-2148178627.jpg", imageAlt: "Study room"},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-keyboard-mouse-arrangement_23-2149386361.jpg",
|
||||
imageAlt: "Warm light",
|
||||
},
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/top-view-keyboard-mouse-arrangement_23-2149386361.jpg", imageAlt: "Warm light"},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-desk-still-life_23-2148111386.jpg",
|
||||
imageAlt: "Morning focus",
|
||||
},
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/office-desk-still-life_23-2148111386.jpg", imageAlt: "Morning focus"},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laptop-notepad-composition-desk_23-2147982558.jpg",
|
||||
imageAlt: "Inspiring workspace",
|
||||
},
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/laptop-notepad-composition-desk_23-2147982558.jpg", imageAlt: "Inspiring workspace"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -105,18 +76,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Crafting Thoughtful ",
|
||||
},
|
||||
type: "text", content: "Crafting Thoughtful "},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-rich-woman-indoors-with-book_23-2149548501.jpg",
|
||||
alt: "Thoughtful reading",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/portrait-rich-woman-indoors-with-book_23-2149548501.jpg", alt: "Thoughtful reading"},
|
||||
{
|
||||
type: "text",
|
||||
content: " Narratives",
|
||||
},
|
||||
type: "text", content: " Narratives"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -129,20 +93,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "150k+",
|
||||
description: "Active monthly readers",
|
||||
},
|
||||
id: "m1", value: "150k+", description: "Active monthly readers"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "2.4k",
|
||||
description: "Articles published",
|
||||
},
|
||||
id: "m2", value: "2.4k", description: "Articles published"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "50+",
|
||||
description: "Global contributors",
|
||||
},
|
||||
id: "m3", value: "50+", description: "Global contributors"},
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="We are proud of the community we've built and the stories we've shared together."
|
||||
@@ -151,27 +106,16 @@ export default function LandingPage() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Deep Analysis",
|
||||
description: "Unpacking complex topics with accessible, research-backed insights.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-writing-her-journal_23-2150416367.jpg",
|
||||
imageAlt: "Feature 1",
|
||||
},
|
||||
title: "Deep Analysis", description: "Unpacking complex topics with accessible, research-backed insights.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-writing-her-journal_23-2150416367.jpg", imageAlt: "Feature 1"},
|
||||
{
|
||||
title: "Curated Stories",
|
||||
description: "Hand-picked essays from diverse voices across the globe.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blank-paper-marble-texture-against-white-background_23-2148061589.jpg",
|
||||
imageAlt: "Feature 2",
|
||||
},
|
||||
title: "Curated Stories", description: "Hand-picked essays from diverse voices across the globe.", imageSrc: "http://img.b2bpic.net/free-photo/blank-paper-marble-texture-against-white-background_23-2148061589.jpg", imageAlt: "Feature 2"},
|
||||
{
|
||||
title: "Engaged Community",
|
||||
description: "Join discussions and share your own interpretations in our comments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-paint-art-concept_23-2148023791.jpg",
|
||||
imageAlt: "Feature 3",
|
||||
},
|
||||
title: "Engaged Community", description: "Join discussions and share your own interpretations in our comments.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-paint-art-concept_23-2148023791.jpg", imageAlt: "Feature 3"},
|
||||
]}
|
||||
title="Why Ink & Insight"
|
||||
description="Discover curated content that challenges your perspective and deepens your understanding of the world."
|
||||
@@ -183,14 +127,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"The Monthly Journal",
|
||||
"Digital Insight Daily",
|
||||
"Global Think Tank",
|
||||
"Modern Prose Weekly",
|
||||
"Innovation Corner",
|
||||
"Storytelling Gazette",
|
||||
"The Analytical Review",
|
||||
]}
|
||||
"The Monthly Journal", "Digital Insight Daily", "Global Think Tank", "Modern Prose Weekly", "Innovation Corner", "Storytelling Gazette", "The Analytical Review"]}
|
||||
title="Featured In"
|
||||
description="Trusted by leading platforms and readers alike."
|
||||
/>
|
||||
@@ -201,30 +138,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Elena Rossi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg",
|
||||
},
|
||||
id: "1", name: "Elena Rossi", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Julian Moore",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-mature-man_1098-21445.jpg",
|
||||
},
|
||||
id: "2", name: "Julian Moore", imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-mature-man_1098-21445.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sarah Jenkins",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-posing_23-2149745618.jpg",
|
||||
},
|
||||
id: "3", name: "Sarah Jenkins", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-posing_23-2149745618.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Markus Thorne",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-is-carefully-reading-book-emotion-concept_169016-65778.jpg",
|
||||
},
|
||||
id: "4", name: "Markus Thorne", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-is-carefully-reading-book-emotion-concept_169016-65778.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Alice Wang",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-knitted-stockings-uses-phone-cozy-bed-autumn-leaves_169016-14028.jpg",
|
||||
},
|
||||
id: "5", name: "Alice Wang", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-knitted-stockings-uses-phone-cozy-bed-autumn-leaves_169016-14028.jpg"},
|
||||
]}
|
||||
cardTitle="What Our Readers Say"
|
||||
cardTag="Reader Voices"
|
||||
@@ -241,35 +163,11 @@ export default function LandingPage() {
|
||||
description="Explore the most recent articles and thought leadership pieces."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Culture",
|
||||
title: "The Future of Digital Storytelling",
|
||||
excerpt: "How new technologies are reshaping how we tell stories.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-desk-with-stacked-books-mug_23-2148827256.jpg",
|
||||
authorName: "Jane Doe",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/happy-female-customer-with-gadget-posing-public-library_74855-1979.jpg",
|
||||
date: "Oct 12, 2024",
|
||||
},
|
||||
id: "b1", category: "Culture", title: "The Future of Digital Storytelling", excerpt: "How new technologies are reshaping how we tell stories.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-desk-with-stacked-books-mug_23-2148827256.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/happy-female-customer-with-gadget-posing-public-library_74855-1979.jpg", date: "Oct 12, 2024"},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Mindfulness",
|
||||
title: "Finding Focus in a Distracted World",
|
||||
excerpt: "Practical tips for cultivating deep work in the modern era.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smartphone-with-cookies-camera-coffee-cup-table_23-2148043921.jpg",
|
||||
authorName: "Alex Smith",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/handsome-businesman-summer-city_1157-18994.jpg",
|
||||
date: "Oct 05, 2024",
|
||||
},
|
||||
id: "b2", category: "Mindfulness", title: "Finding Focus in a Distracted World", excerpt: "Practical tips for cultivating deep work in the modern era.", imageSrc: "http://img.b2bpic.net/free-photo/smartphone-with-cookies-camera-coffee-cup-table_23-2148043921.jpg", authorName: "Alex Smith", authorAvatar: "http://img.b2bpic.net/free-photo/handsome-businesman-summer-city_1157-18994.jpg", date: "Oct 05, 2024"},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Philosophy",
|
||||
title: "The Art of Slow Living",
|
||||
excerpt: "Why slowing down might be the key to productivity.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-person-s-hand-wearing-gloves-holding-flower-pot-wooden-backdrop_23-2148044531.jpg",
|
||||
authorName: "Sam Wilson",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/contemplative-bearded-mature-man-eyewear_273609-4101.jpg",
|
||||
date: "Sep 28, 2024",
|
||||
},
|
||||
id: "b3", category: "Philosophy", title: "The Art of Slow Living", excerpt: "Why slowing down might be the key to productivity.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-person-s-hand-wearing-gloves-holding-flower-pot-wooden-backdrop_23-2148044531.jpg", authorName: "Sam Wilson", authorAvatar: "http://img.b2bpic.net/free-photo/contemplative-bearded-mature-man-eyewear_273609-4101.jpg", date: "Sep 28, 2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -278,16 +176,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Let's Connect"
|
||||
title="Stay Informed"
|
||||
description="Subscribe to our newsletter for weekly doses of inspiration delivered directly to your inbox."
|
||||
buttons={[
|
||||
{
|
||||
text: "Subscribe Now",
|
||||
href: "#",
|
||||
},
|
||||
text: "Subscribe Now", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -296,42 +191,27 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Explore",
|
||||
items: [
|
||||
title: "Explore", items: [
|
||||
{
|
||||
label: "Blog",
|
||||
href: "#blog",
|
||||
},
|
||||
label: "Blog", href: "#blog"},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About", href: "#about"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Newsletter",
|
||||
href: "#",
|
||||
},
|
||||
label: "Newsletter", href: "#"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Say Hello",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Say Hello", href: "#contact"},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "#",
|
||||
},
|
||||
label: "Twitter", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user