diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..c8fbe6d --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,48 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Rocket } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..78e778f --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,39 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import BlogCardThree from "@/components/sections/blog/BlogCardThree"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function BlogPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..871bb4f --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,33 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function ContactPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..d3695cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,9 +36,10 @@ export default function WebAgency2Page() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contact" }, ]} - button={{ text: "Get Started", href: "#contact" }} + button={{ text: "Get Started", href: "/contact" }} /> ); -} +} \ No newline at end of file diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..c83f0ce --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { ArrowUpRight } from "lucide-react"; + +export default function PortfolioPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..428eaaa --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Search, Monitor, Zap, Palette, Shield } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx new file mode 100644 index 0000000..2070098 --- /dev/null +++ b/src/app/team/page.tsx @@ -0,0 +1,51 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function TeamPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file