diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..87d824a --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,70 @@ +"use client"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Award, Star, Headphones } from "lucide-react"; + +export default function AboutUsPage() { + const commonNavItems = [ + { name: "Services", id: "/services-page" }, + { name: "About Us", id: "/about-us" }, + { name: "Projects", id: "projects" }, + { name: "Testimonials", id: "testimonials" }, + { name: "Contact", id: "contact" } + ]; + + const commonFooterColumns = [ + { items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services-page" }, { label: "Projects", href: "#projects" }] }, + { items: [{ label: "About Us", href: "/about-us" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" }] }, + { items: [{ label: "Call Us: +92 300 1234567", href: "tel:+923001234567" }, { label: "Email: info@yourcompany.com", href: "mailto:info@yourcompany.com" }, { label: "WhatsApp Us", href: "https://wa.me/923001234567" }] } + ]; + + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file