diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..78a2f8d --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,181 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Award, Zap, MessageSquare, Send } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6cb482d..cf24600 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,7 +2,8 @@ import type { Metadata } from "next"; import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Design Axis - Premium Digital Agency", description: "Partner with a digital agency that turns strategy into measurable results. From concept to launch, we deliver design, development, and growth."}; + title: "Design Axis - Premium Digital Agency", description: "Partner with a digital agency that turns strategy into measurable results. From concept to launch, we deliver design, development, and growth." +}; export default function RootLayout({ children, diff --git a/src/app/page.tsx b/src/app/page.tsx index fd60c75..667c57e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,6 +32,7 @@ export default function LandingPage() {