37 lines
986 B
TypeScript
37 lines
986 B
TypeScript
'use client'
|
|
import CountUp from 'react-countup'
|
|
import Countdown from '@/components/elements/Countdown'
|
|
import Layout from "@/components/layout/Layout"
|
|
import BrandSlider from '@/components/slider/BrandSlider'
|
|
import AboutUs from "@/components/about/AboutUs"
|
|
import Link from "next/link"
|
|
export default function About() {
|
|
|
|
return (
|
|
<>
|
|
|
|
<Layout headerStyle={1} footerStyle={1}>
|
|
<div>
|
|
<div className="inner-page-header" style={{ backgroundImage: 'url(/assets/img/about/banner/about-banner.webp)' }}>
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-12 m-auto">
|
|
<div className="heading1">
|
|
<h1>About Us</h1>
|
|
<div className="space20" />
|
|
<Link href="/">Home <i className="fa-solid fa-angle-right" /> <span>About Us</span></Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/*===== HERO AREA ENDS =======*/}
|
|
|
|
<AboutUs />
|
|
|
|
</div>
|
|
|
|
</Layout>
|
|
</>
|
|
)
|
|
} |