6 Commits

Author SHA1 Message Date
dbbaaf77ad Merge version_8 into main
Merge version_8 into main
2026-05-21 01:16:37 +00:00
8627ea45eb Update src/app/page.tsx 2026-05-21 01:16:30 +00:00
0909ae3c61 Merge version_7 into main
Merge version_7 into main
2026-05-21 01:13:21 +00:00
dc21bcbe26 Update src/app/page.tsx 2026-05-21 01:13:18 +00:00
bd729bc591 Merge version_6 into main
Merge version_6 into main
2026-05-21 01:12:52 +00:00
1fb8d3292a Merge version_6 into main
Merge version_6 into main
2026-05-21 01:06:00 +00:00

View File

@@ -2,7 +2,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
@@ -11,7 +10,7 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { BookOpen, Coffee, Users } from "lucide-react";
import { BookOpen, Coffee, Users, Clock } from "lucide-react";
export default function LandingPage() {
return (
@@ -152,24 +151,6 @@ export default function LandingPage() {
/>
</div>
<div id="blog" data-section="blog">
<BlogCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="From the Desk of Arcade"
description="Insights, staff picks, and community happenings from your Rye bookstore."
blogs={[
{
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"},
{
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"},
{
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"},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
@@ -187,6 +168,14 @@ export default function LandingPage() {
/>
</div>
<div id="hours" data-section="hours" className="bg-accent text-center py-10">
<div className="flex flex-col items-center gap-2">
<Clock className="w-8 h-8" />
<h3 className="text-xl font-bold">Business Hours</h3>
<p className="text-lg">Mon-Sat: 9:30AM - 6PM | Sun: Closed</p>
</div>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building-plants_23-2149301099.jpg"
@@ -198,9 +187,7 @@ export default function LandingPage() {
{
label: "About Us", href: "#about"},
{
label: "Staff Picks", href: "#blog"},
{
label: "Events", href: "#blog"},
label: "Contact", href: "#contact"},
],
},
{
@@ -209,8 +196,6 @@ export default function LandingPage() {
label: "Get Directions", href: "https://maps.google.com"},
{
label: "Call Us", href: "tel:9149670966"},
{
label: "Contact", href: "#contact"},
],
},
]}