Files
c84fc773-0a98-4581-a91c-e67…/src/app/about/page.tsx
2026-03-08 19:52:14 +00:00

246 lines
8.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import {
Heart,
CheckCircle,
Users,
Zap,
Award,
Sparkles,
Phone,
} from "lucide-react";
const navItems = [
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "features" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
];
const button = {
text: "Reserve Now",
href: "/contact",
};
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="small"
sizing="medium"
background="fluid"
cardStyle="glass-depth"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="סין צ'אן"
navItems={navItems}
button={button}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="Why Choose סין צ'אן?"
description="Since opening in Beit HaShita, we've been committed to delivering authentic Asian cuisine with exceptional service and a warm, welcoming atmosphere. Our restaurant has become a beloved destination for both locals and visitors seeking genuine Asian flavors combined with warm hospitality."
tag="Our Story"
tagIcon={Heart}
bulletPoints={[
{
icon: CheckCircle,
title: "Authentic Recipes",
description:
"Traditional Asian cooking techniques combined with premium, fresh ingredients imported from trusted suppliers. Every dish honors its cultural roots.",
},
{
icon: Users,
title: "Personalized Attention",
description:
"Our team remembers your favorites and preferences, ensuring every visit feels special and customized to you. We treat every guest like family.",
},
{
icon: Zap,
title: "Fast & Reliable",
description:
"Efficient service for dine-in, takeaway, and delivery. No compromises on quality or freshness, no matter how you order.",
},
{
icon: Award,
title: "Local Trust",
description:
"Rated 4.4 stars by 497+ local customers who value our consistency, hospitality, and value for money. We're proud of our reputation.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg?_wi=2"
imageAlt="Welcoming restaurant ambiance with attentive service"
imagePosition="right"
mediaAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="values" data-section="values">
<FeatureHoverPattern
title="Our Values & Commitment"
description="We're driven by core values that guide every decision we make, from sourcing ingredients to training our staff. These principles define who we are."
tag="Our Promise"
tagIcon={Sparkles}
features={[
{
icon: Heart,
title: "Quality First",
description:
"We never compromise on ingredient quality or preparation standards. Every dish reflects our commitment to excellence.",
},
{
icon: Users,
title: "Community Connection",
description:
"We're proud to be part of Beit HaShita. We support local events, provide catering services, and build relationships with our neighbors.",
},
{
icon: CheckCircle,
title: "Continuous Improvement",
description:
"We listen to customer feedback and constantly refine our menu, service, and dining experience to exceed expectations.",
},
{
icon: Award,
title: "Culinary Excellence",
description:
"Our chefs are trained in authentic Asian cooking traditions and stay updated with modern techniques to deliver innovative yet respectful cuisine.",
},
{
icon: Zap,
title: "Efficiency & Care",
description:
"We optimize our operations to serve you faster without sacrificing quality. Your time and satisfaction are equally important to us.",
},
{
icon: Heart,
title: "Sustainability",
description:
"We source responsibly, minimize waste, and support sustainable fishing practices. Good food shouldn't harm the environment.",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttonAnimation="slide-up"
tagAnimation="slide-up"
/>
</div>
<div id="cta-about" data-section="cta-about">
<ContactCTA
tag="Join Our Family"
tagIcon={Phone}
title="Experience סין צ'אן Today"
description="Whether you're a first-time visitor or a loyal regular, we'd love to welcome you to our table. Discover why Beit HaShita has embraced סין צ'אן as their favorite dining destination."
buttons={[
{
text: "Make a Reservation",
href: "tel:+972-4-653-5500",
},
{
text: "View Our Full Menu",
href: "/",
},
]}
background={{
variant: "radial-gradient",
}}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/red-open-sign-still-life_23-2149168997.jpg?_wi=2"
imageAlt="סין צ'אן restaurant exterior with Mt Gilboa backdrop"
logoText="סין צ'אן בית השיטה"
copyrightText="© 2025 סין צ'אן בית השיטה. All rights reserved."
columns={[
{
title: "Restaurant",
items: [
{
label: "Home",
href: "/",
},
{
label: "About Us",
href: "/about",
},
{
label: "Menu",
href: "/#features",
},
{
label: "Reservations",
href: "/#contact",
},
],
},
{
title: "Contact",
items: [
{
label: "Phone: 04-653-5500",
href: "tel:+972-4-653-5500",
},
{
label: "Email: info@sinci.co.il",
href: "mailto:info@sinci.co.il",
},
{
label: "Beit HaShita",
href: "#",
},
{
label: "Hours: 11am - 11pm",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "Catering Inquiry",
href: "/#contact",
},
{
label: "Follow Us",
href: "#",
},
],
},
]}
/>
</div>
</ThemeProvider>
);
}