"use client" import Container from "@/components/Container" import { gsap } from "gsap" import { ScrollTrigger } from "gsap/ScrollTrigger" import { useEffect, useRef } from "react" gsap.registerPlugin(ScrollTrigger) const About = () => { const sectionRef = useRef(null) useEffect(() => { if (!sectionRef.current) return const elements = sectionRef.current.querySelectorAll(".animate-element") const timelineElements = sectionRef.current.querySelectorAll(".animate-timeline") elements.forEach((element: HTMLElement) => { gsap.fromTo( element, { opacity: 0, y: 20 }, { opacity: 1, y: 0, duration: 1, scrollTrigger: { trigger: element, start: "top 80%", end: "top 60%", scrub: true, once: true, }, } ) }) timelineElements.forEach((element: HTMLElement) => { gsap.fromTo( element, { opacity: 0, x: -50 }, { opacity: 1, x: 0, duration: 1, scrollTrigger: { trigger: element, start: "top 90%", end: "top 70%", scrub: true, once: true, }, } ) }) }, []) return (

About Our Company

At Art Lighting Inc. we are a team of passionate innovators dedicated to pushing the boundaries of what's possible. Since our founding in 2010, we've been on a mission to create cutting-edge products and services that transform the way people live and work.

{[ { title: "Our Mission", desc: "To revolutionize the tech industry and empower people with innovative solutions." }, { title: "Our Values", desc: "Integrity, Collaboration, Creativity, and Continuous Improvement." }, { title: "Our Team", desc: "A diverse group of talented individuals who are passionate about making a difference." }, { title: "Our Commitment", desc: "To deliver exceptional products and services that exceed our customers' expectations." }, ].map(({ title, desc }) => (

{title}

{desc}

))}
{[ "2010 - Founding of Art Lighting Inc.", "2010 - Launch of First Product", "2012 - Expansion into New Markets", "2013 - Breakthrough Innovation", "2014 - Local Expansion and Acquisition", "2015 - Sustainability Initiatives", "2016 - Art Lighting Inc. Goes Public", "2016 - Art Lighting Working with Military", "2020 - Pandemic Response and Resilience", "2023 - Our Factory Completed", ].map((event, i) => (
{event}
))}
) } export default About