diff --git a/src/app/artists/page.tsx b/src/app/artists/page.tsx index 92d3886..d4d1c58 100644 --- a/src/app/artists/page.tsx +++ b/src/app/artists/page.tsx @@ -1,131 +1,34 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine"; +import ContactText from "@/components/sections/contact/ContactText"; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }, { name: "Artists", id: "/artists" }, { name: "Portfolio", id: "/portfolio" }, { name: "Tarifs", id: "/tarifs" }, { name: "Contact", id: "/contact" }]; + +export default function ArtistsPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 3bb103f..149f8ba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,6 @@ import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import ContactText from "@/components/sections/contact/ContactText"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import Link from "next/link"; const navItems = [ { name: "Home", id: "/" }, @@ -22,16 +21,16 @@ const navItems = [ export default function Home() { return (
+
+
+ +
+
+ +
+
+ +
+
+
diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 586446f..ef170c9 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -1,131 +1,34 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine"; +import ContactText from "@/components/sections/contact/ContactText"; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }, { name: "Artists", id: "/artists" }, { name: "Portfolio", id: "/portfolio" }, { name: "Tarifs", id: "/tarifs" }, { name: "Contact", id: "/contact" }]; + +export default function PortfolioPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
); -} +} \ No newline at end of file diff --git a/src/app/tarifs/page.tsx b/src/app/tarifs/page.tsx index b5475cf..f79f95f 100644 --- a/src/app/tarifs/page.tsx +++ b/src/app/tarifs/page.tsx @@ -1,131 +1,34 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine"; +import ContactText from "@/components/sections/contact/ContactText"; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }, { name: "Artists", id: "/artists" }, { name: "Portfolio", id: "/portfolio" }, { name: "Tarifs", id: "/tarifs" }, { name: "Contact", id: "/contact" }]; + +export default function TarifsPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
); -} +} \ No newline at end of file