diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..102278c --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function AboutPage() { + return ( + + + +
+ +
+
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 9795a51..4c01003 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,17 +1,14 @@ "use client"; import ReactLenis from "lenis/react"; -import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; +import HeroCarouselLogo from "@/components/sections/hero/HeroBillboardScroll"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; -import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; -import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterCard from "@/components/sections/footer/FooterCard"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Sparkles, Phone, Users, Instagram, Facebook } from "lucide-react"; +import { Sparkles, Instagram, Facebook } from "lucide-react"; export default function TrashCleaningPage() { return ( @@ -30,7 +27,7 @@ export default function TrashCleaningPage() { - +
+ +
@@ -84,24 +83,24 @@ export default function TrashCleaningPage() { description="Connect with us on our social platforms." textboxLayout="default" animationType="slide-up" + faqsAnimation="slide-up" features={[ { - id: "fb", title: "Facebook", description: "Follow our latest cleaning results!", tag: "Facebook", imageSrc: "http://img.b2bpic.net/free-photo/3d-facebook-logo-with-colorful-elements_23-2152000293.jpg", imageAlt: "Facebook" + id: "fb", title: "Facebook", descriptions: ["Follow our latest cleaning results!"], + imageSrc: "http://img.b2bpic.net/free-photo/3d-facebook-logo-with-colorful-elements_23-2152000293.jpg", imageAlt: "Facebook" }, { - id: "ig", title: "Instagram", description: "See the shine on every bin we clean!", tag: "Instagram", imageSrc: "http://img.b2bpic.net/free-photo/branding-strategy-marketing-business-graphic-design_53876-125554.jpg", imageAlt: "Instagram" + id: "ig", title: "Instagram", descriptions: ["See the shine on every bin we clean!"], + imageSrc: "http://img.b2bpic.net/free-photo/branding-strategy-marketing-business-graphic-design_53876-125554.jpg", imageAlt: "Instagram" } ]} />
); -} \ No newline at end of file +}