136 lines
5.7 KiB
TypeScript
136 lines
5.7 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
import { Award, CheckCircle, Droplet, FileText, Grid, Heart, MessageCircle, ShieldCheck, Sparkles, Gauge, Paintbrush, CalendarCheck } from "lucide-react";
|
|
|
|
export default function AboutPage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About Us", id: "/about" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "Gallery", id: "/gallery" },
|
|
{ name: "Reviews", id: "/reviews" },
|
|
{ name: "FAQ", id: "/faq" },
|
|
{ name: "Contact", id: "/contact" },
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="largeSmallSizeMediumTitles"
|
|
background="noise"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="light"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
navItems={navItems}
|
|
brandName="TILES CONNECT"
|
|
button={{ text: "Get Free Estimate", href: "/contact" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about-craftsman" data-section="about-craftsman">
|
|
<TextAbout
|
|
useInvertedBackground={true}
|
|
title="Meet The Craftsman Behind Tiles Connect"
|
|
|
|
/>
|
|
</div>
|
|
|
|
<div id="our-values" data-section="our-values">
|
|
<FeatureBento
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
title: "Precision", description: "We believe every grout line matters, ensuring flawless results.", bentoComponent: "reveal-icon", icon: Gauge,
|
|
},
|
|
{
|
|
title: "Transparency", description: "Clear communication and detailed quotes from day one.", bentoComponent: "reveal-icon", icon: FileText,
|
|
},
|
|
{
|
|
title: "Craftsmanship", description: "We treat every project as a work of art, built to last.", bentoComponent: "reveal-icon", icon: Paintbrush,
|
|
},
|
|
{
|
|
title: "Reliability", description: "Show up on time, finish properly, and stand behind our work.", bentoComponent: "reveal-icon", icon: CalendarCheck,
|
|
},
|
|
]}
|
|
title="Our Values"
|
|
description="The principles that guide every project and define our commitment to excellence."
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact-final" data-section="contact-final">
|
|
<ContactText
|
|
useInvertedBackground={true}
|
|
background={{ variant: "plain" }}
|
|
text="Ready To Upgrade Your Home? Whether you're planning a bathroom renovation, kitchen backsplash, or custom tile project, we're here to help bring your vision to life. Get a detailed quote and expert guidance from start to finish."
|
|
buttons={[
|
|
{ text: "Request Free Estimate", href: "/contact" },
|
|
{ text: "Call Now", href: "tel:ADD_NUMBER" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="http://img.b2bpic.net/free-photo/luxurious-marble-floor-and-wall_23-2149540026.jpg?_wi=1"
|
|
imageAlt="Luxury tile pattern background"
|
|
logoText="TILES CONNECT"
|
|
columns={[
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Services", href: "/services" },
|
|
{ label: "Gallery", href: "/gallery" },
|
|
],
|
|
},
|
|
{
|
|
title: "Resources", items: [
|
|
{ label: "Reviews", href: "/reviews" },
|
|
{ label: "FAQ", href: "/faq" },
|
|
{ label: "Contact", href: "/contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Service Areas", items: [
|
|
{ label: "Mississauga", href: "#" },
|
|
{ label: "Oakville", href: "#" },
|
|
{ label: "Brampton", href: "#" },
|
|
{ label: "Toronto", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
copyrightText="© 2024 Tiles Connect. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|