Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e5fedda26 | |||
| 5702d0288b | |||
| 0e75ecb4d1 | |||
| df6323eed9 | |||
| d15e3cb62e |
206
src/app/page.tsx
206
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Features",
|
name: "Features", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Arcade Books"
|
brandName="Arcade Books"
|
||||||
/>
|
/>
|
||||||
@@ -55,63 +47,40 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
title="Arcade Books – A Nook for Every Reader"
|
title="Arcade Books – A Nook for Every Reader"
|
||||||
description="Floor-to-ceiling stories in the heart of Rye, NY. Discover your next favorite book in our cozy, curated collection."
|
description="Floor-to-ceiling stories in the heart of Rye, NY. Discover your next favorite book in our cozy, curated collection."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Visit Us Today",
|
text: "Visit Us Today", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/interior-design-with-shelves-potted-plants_23-2149427980.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building-plants_23-2149301099.jpg?_wi=1"
|
||||||
imageAlt="Inside Arcade Books Rye NY"
|
imageAlt="Arcade Books exterior"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151118894.jpg",
|
src: "http://img.b2bpic.net/free-photo/cozy-lively-home-interior-design_23-2151118894.jpg", alt: "Cozy and lively home interior design"},
|
||||||
alt: "Cozy and lively home interior design",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/yellow-furniture_1321-386.jpg",
|
src: "http://img.b2bpic.net/free-photo/yellow-furniture_1321-386.jpg", alt: "yellow furniture"},
|
||||||
alt: "yellow furniture",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/pretty-young-girl-library_23-2148727840.jpg",
|
src: "http://img.b2bpic.net/free-photo/pretty-young-girl-library_23-2148727840.jpg", alt: "Pretty young girl at the library"},
|
||||||
alt: "Pretty young girl at the library",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/pretty-young-girl-library_23-2148727839.jpg",
|
src: "http://img.b2bpic.net/free-photo/pretty-young-girl-library_23-2148727839.jpg", alt: "Pretty young girl at the library"},
|
||||||
alt: "Pretty young girl at the library",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg",
|
src: "http://img.b2bpic.net/free-photo/china-stairs-stone-tiles-old-water_1417-577.jpg", alt: "china stairs stone tiles old water"},
|
||||||
alt: "china stairs stone tiles old water",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Join our community of over 500+ book lovers in Rye."
|
avatarText="Join our community of over 500+ book lovers in Rye."
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "New Arrivals Daily"},
|
||||||
text: "New Arrivals Daily",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Staff Picks"},
|
||||||
text: "Staff Picks",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Cozy Atmosphere"},
|
||||||
text: "Cozy Atmosphere",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Local Events"},
|
||||||
text: "Local Events",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Curated Collections"},
|
||||||
text: "Curated Collections",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -124,19 +93,13 @@ export default function LandingPage() {
|
|||||||
description="Arcade Books is more than just a store—it's a gathering place for book lovers. Since we opened, our mission has been to provide a friendly, helpful space where you can explore a curated selection of literature."
|
description="Arcade Books is more than just a store—it's a gathering place for book lovers. Since we opened, our mission has been to provide a friendly, helpful space where you can explore a curated selection of literature."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Helpful Staff",
|
title: "Helpful Staff", description: "Our team is passionate about literature and here to guide your discovery."},
|
||||||
description: "Our team is passionate about literature and here to guide your discovery.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Curated Selection",
|
title: "Curated Selection", description: "Every title on our shelves is chosen for its quality, beauty, or local interest."},
|
||||||
description: "Every title on our shelves is chosen for its quality, beauty, or local interest.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Cozy Atmosphere",
|
title: "Cozy Atmosphere", description: "Lose track of time in our classic nook-and-cranny bookstore venue."},
|
||||||
description: "Lose track of time in our classic nook-and-cranny bookstore venue.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/realistic-scene-from-neighborhood-yard-sale-miscellaneous-items_23-2151238399.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/interior-design-with-shelves-potted-plants_23-2149427980.jpg?_wi=2"
|
||||||
imageAlt="Arcade Books friendly team"
|
imageAlt="Arcade Books friendly team"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -149,19 +112,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Expert Recommendations",
|
title: "Expert Recommendations", description: "Can't find a book? Our friendly staff is always ready with a personal recommendation.", icon: BookOpen,
|
||||||
description: "Can't find a book? Our friendly staff is always ready with a personal recommendation.",
|
|
||||||
icon: BookOpen,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Local Events",
|
title: "Local Events", description: "Join our literary discussions and author signings in our quaint Rye location.", icon: Users,
|
||||||
description: "Join our literary discussions and author signings in our quaint Rye location.",
|
|
||||||
icon: Users,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Curated Atmosphere",
|
title: "Curated Atmosphere", description: "From floor to ceiling, we create a calm, inviting environment to browse in.", icon: Coffee,
|
||||||
description: "From floor to ceiling, we create a calm, inviting environment to browse in.",
|
|
||||||
icon: Coffee,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Why Readers Love Us"
|
title="Why Readers Love Us"
|
||||||
@@ -174,30 +131,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/cute-teen-girl-demonstrating-blackboard_23-2147864174.jpg"},
|
||||||
name: "Sarah J.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-teen-girl-demonstrating-blackboard_23-2147864174.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael B.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-cute-hair-reading_23-2148653518.jpg"},
|
||||||
name: "Michael B.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-cute-hair-reading_23-2148653518.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily R.", imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-woman-posing_344912-3036.jpg"},
|
||||||
name: "Emily R.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-woman-posing_344912-3036.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David K.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-teen-schoolgirl-with-books-looking-up_23-2148204259.jpg"},
|
||||||
name: "David K.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-teen-schoolgirl-with-books-looking-up_23-2148204259.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Lydia M.", imageSrc: "http://img.b2bpic.net/free-photo/woman-shopping_1303-5295.jpg"},
|
||||||
name: "Lydia M.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-shopping_1303-5295.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Words from Our Community"
|
cardTitle="Words from Our Community"
|
||||||
cardTag="4.7 Rating"
|
cardTag="4.7 Rating"
|
||||||
@@ -211,20 +153,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What are your hours?", content: "We are open daily until 6 PM. We love welcoming visitors during the work week and on weekends."},
|
||||||
title: "What are your hours?",
|
|
||||||
content: "We are open daily until 6 PM. We love welcoming visitors during the work week and on weekends.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Where can I find you?", content: "You can visit us at 9 Theodore Fremd Ave, Rye, NY 10580. We look forward to seeing you!"},
|
||||||
title: "Where can I find you?",
|
|
||||||
content: "You can visit us at 9 Theodore Fremd Ave, Rye, NY 10580. We look forward to seeing you!",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Can you order special books?", content: "Absolutely. If we don't have it in stock, ask our staff and we'll do our best to get it for you."},
|
||||||
title: "Can you order special books?",
|
|
||||||
content: "Absolutely. If we don't have it in stock, ask our staff and we'll do our best to get it for you.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Questions about Arcade Books"
|
title="Questions about Arcade Books"
|
||||||
description="Everything you need to know about your local favorite."
|
description="Everything you need to know about your local favorite."
|
||||||
@@ -241,35 +174,11 @@ export default function LandingPage() {
|
|||||||
description="Insights, staff picks, and community happenings from your Rye bookstore."
|
description="Insights, staff picks, and community happenings from your Rye bookstore."
|
||||||
blogs={[
|
blogs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", category: "Books", title: "New Staff Picks for Spring", excerpt: "Spring is here and our shelves are full of new adventures. Here is what we are reading this month.", imageSrc: "http://img.b2bpic.net/free-photo/comfortable-modern-living-room-with-bookshelf-decor-generated-by-ai_188544-37916.jpg", authorName: "Arcade Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-books_23-2148680205.jpg", date: "March 2025"},
|
||||||
category: "Books",
|
|
||||||
title: "New Staff Picks for Spring",
|
|
||||||
excerpt: "Spring is here and our shelves are full of new adventures. Here is what we are reading this month.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/comfortable-modern-living-room-with-bookshelf-decor-generated-by-ai_188544-37916.jpg",
|
|
||||||
authorName: "Arcade Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-books_23-2148680205.jpg",
|
|
||||||
date: "March 2025",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", category: "Events", title: "Author Signing: A Local Legend", excerpt: "Don't miss our upcoming author event scheduled for late April. Space is limited, so RSVP today.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-holding-book_23-2148396351.jpg", authorName: "Arcade Team", authorAvatar: "http://img.b2bpic.net/free-photo/woman-hugging-stack-book_23-2147848214.jpg", date: "April 2025"},
|
||||||
category: "Events",
|
|
||||||
title: "Author Signing: A Local Legend",
|
|
||||||
excerpt: "Don't miss our upcoming author event scheduled for late April. Space is limited, so RSVP today.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-woman-holding-book_23-2148396351.jpg",
|
|
||||||
authorName: "Arcade Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/woman-hugging-stack-book_23-2147848214.jpg",
|
|
||||||
date: "April 2025",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", category: "Community", title: "Why Shopping Small Matters", excerpt: "We take a moment to reflect on why our Rye community is the best part of our day.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-pretty-woman-reading-book_23-2148293991.jpg", authorName: "Arcade Team", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-books_23-2148680204.jpg", date: "February 2025"},
|
||||||
category: "Community",
|
|
||||||
title: "Why Shopping Small Matters",
|
|
||||||
excerpt: "We take a moment to reflect on why our Rye community is the best part of our day.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-pretty-woman-reading-book_23-2148293991.jpg",
|
|
||||||
authorName: "Arcade Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-books_23-2148680204.jpg",
|
|
||||||
date: "February 2025",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -278,20 +187,15 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
title="Visit Arcade Books Today"
|
title="Visit Arcade Books Today"
|
||||||
description="Find us at 9 Theodore Fremd Ave, Rye, NY. We're open until 6 PM daily and would love to help you find your next great read."
|
description="Find us at 9 Theodore Fremd Ave, Rye, NY. We're open until 6 PM daily and would love to help you find your next great read."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Directions",
|
text: "Get Directions", href: "https://maps.google.com"},
|
||||||
href: "https://maps.google.com",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Call (914) 967-0966",
|
text: "Call (914) 967-0966", href: "tel:9149670966"},
|
||||||
href: "tel:9149670966",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -303,37 +207,23 @@ export default function LandingPage() {
|
|||||||
logoText="Arcade Books"
|
logoText="Arcade Books"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigate",
|
title: "Navigate", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Staff Picks",
|
label: "Staff Picks", href: "#blog"},
|
||||||
href: "#blog",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Events",
|
label: "Events", href: "#blog"},
|
||||||
href: "#blog",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Visit",
|
title: "Visit", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Get Directions",
|
label: "Get Directions", href: "https://maps.google.com"},
|
||||||
href: "https://maps.google.com",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Call Us",
|
label: "Call Us", href: "tel:9149670966"},
|
||||||
href: "tel:9149670966",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -343,4 +233,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user