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