diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx new file mode 100644 index 0000000..f05f754 --- /dev/null +++ b/src/app/projects/page.tsx @@ -0,0 +1,209 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, Briefcase, Code, Github, Linkedin, Palette, Smartphone, Star, Twitter, Users, Zap } from 'lucide-react'; + +export default function ProjectsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}