Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-04-03 13:25:14 +00:00
2 changed files with 42 additions and 135 deletions

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Books",
id: "/books",
},
name: "Books", id: "/books"},
{
name: "Journal",
id: "/blog",
},
name: "Journal", id: "/blog"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Evelyn Reed"
/>
@@ -58,59 +48,23 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Evelyn Reed",
name: "The Quiet Memory",
price: "$19.99",
rating: 5,
reviewCount: "120",
imageSrc: "http://img.b2bpic.net/free-photo/decorative-flowers-book_23-2147615056.jpg?_wi=3",
},
id: "1", brand: "Evelyn Reed", name: "The Quiet Memory", price: "$19.99", rating: 5,
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/decorative-flowers-book_23-2147615056.jpg"},
{
id: "2",
brand: "Evelyn Reed",
name: "Whispers of Dawn",
price: "$22.99",
rating: 5,
reviewCount: "98",
imageSrc: "http://img.b2bpic.net/free-photo/physical-paper-book-background-closeup_58702-6686.jpg?_wi=3",
},
id: "2", brand: "Evelyn Reed", name: "Whispers of Dawn", price: "$22.99", rating: 5,
reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-photo/physical-paper-book-background-closeup_58702-6686.jpg"},
{
id: "3",
brand: "Evelyn Reed",
name: "Starlight Reflections",
price: "$18.50",
rating: 4,
reviewCount: "150",
imageSrc: "http://img.b2bpic.net/free-photo/black-white-image-sad-woman_23-2151338372.jpg?_wi=3",
},
id: "3", brand: "Evelyn Reed", name: "Starlight Reflections", price: "$18.50", rating: 4,
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/black-white-image-sad-woman_23-2151338372.jpg"},
{
id: "4",
brand: "Evelyn Reed",
name: "The Hidden Path",
price: "$24.00",
rating: 5,
reviewCount: "85",
imageSrc: "http://img.b2bpic.net/free-vector/blue-monday-instagram-post-template-design_742173-30018.jpg?_wi=2",
},
id: "4", brand: "Evelyn Reed", name: "The Hidden Path", price: "$24.00", rating: 5,
reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-vector/blue-monday-instagram-post-template-design_742173-30018.jpg"},
{
id: "5",
brand: "Evelyn Reed",
name: "Echoes of Yesterday",
price: "$21.00",
rating: 5,
reviewCount: "210",
imageSrc: "http://img.b2bpic.net/free-psd/italian-food-poster-template_23-2148546637.jpg?_wi=2",
},
id: "5", brand: "Evelyn Reed", name: "Echoes of Yesterday", price: "$21.00", rating: 5,
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-psd/italian-food-poster-template_23-2148546637.jpg"},
{
id: "6",
brand: "Evelyn Reed",
name: "Finding Home",
price: "$19.00",
rating: 4,
reviewCount: "70",
imageSrc: "http://img.b2bpic.net/free-photo/cover-mockup-with-alphabet_23-2147730284.jpg",
},
id: "6", brand: "Evelyn Reed", name: "Finding Home", price: "$19.00", rating: 4,
reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/cover-mockup-with-alphabet_23-2147730284.jpg"},
]}
title="My Bookshelf"
description="Discover the full collection of stories and journeys written over the years."
@@ -121,7 +75,6 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Signed Editions"
description="Order directly for personalized copies signed by the author."
/>
</div>
@@ -129,41 +82,25 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Books",
href: "/books",
},
label: "Books", href: "/books"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Newsletter",
href: "#",
},
label: "Newsletter", href: "#"},
],
},
]}

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Books",
id: "/books",
},
name: "Books", id: "/books"},
{
name: "Journal",
id: "/blog",
},
name: "Journal", id: "/blog"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Evelyn Reed"
/>
@@ -54,16 +44,13 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Let's Connect"
title="Get in Touch"
description="Whether it's speaking inquiries, collaboration, or just saying hello—I'd love to hear from you."
buttons={[
{
text: "Send Message",
href: "#",
},
text: "Send Message", href: "#"},
]}
/>
</div>
@@ -72,7 +59,6 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Office Hours"
description="I typically respond to inquiries within 48 business hours."
/>
</div>
@@ -80,41 +66,25 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "About",
href: "/about",
},
label: "About", href: "/about"},
{
label: "Books",
href: "/books",
},
label: "Books", href: "/books"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Newsletter",
href: "#",
},
label: "Newsletter", href: "#"},
],
},
]}