diff --git a/app/page.tsx b/app/page.tsx index 80285a6..bdd922e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -6,6 +6,7 @@ import { FeaturesSection } from "@/components/layout/sections/features"; import { FooterSection } from "@/components/layout/sections/footer"; import { HeroSection } from "@/components/layout/sections/hero"; import { PricingSection } from "@/components/layout/sections/pricing"; +import { ProjectsSection } from "@/components/layout/sections/projects"; import { ServicesSection } from "@/components/layout/sections/services"; import { SponsorsSection } from "@/components/layout/sections/sponsors"; import { TeamSection } from "@/components/layout/sections/team"; @@ -48,6 +49,7 @@ export default function Home() { {/* */} + {/* */} diff --git a/components/layout/navbar.tsx b/components/layout/navbar.tsx index 52498c6..534ac6e 100644 --- a/components/layout/navbar.tsx +++ b/components/layout/navbar.tsx @@ -41,6 +41,10 @@ const routeList: RouteProps[] = [ href: "#testimonials", label: "Testimonials", }, + { + href: "#projects", + label: "Projects", + }, { href: "https://lu.ma/devsphere", label: "Events", diff --git a/components/layout/sections/projects.tsx b/components/layout/sections/projects.tsx new file mode 100644 index 0000000..2ef7f75 --- /dev/null +++ b/components/layout/sections/projects.tsx @@ -0,0 +1,106 @@ +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { ExternalLink, Github } from "lucide-react"; +import Link from "next/link"; +import Image from "next/image"; + +export const ProjectsSection = () => { + return ( +
+
+

+ PROJECTS +

+

+ Our Featured Projects +

+
+ +
+ {/* Artify Project */} + + + + + Artify + + +

+ Artify by DevSphere is an AI-powered web application that transforms ordinary photos into stunning works of art. Users can choose from over 30 artistic styles to create personalized masterpieces in seconds. +

+
+ + + {/* Artify Logo Display */} +
+ {/* Subtle Background Pattern */} +
+ + {/* Main Content Container */} +
+ {/* Logo Container with DevSphere styling */} +
+ {/* Inner glow effect */} +
+ + Artify - AI Photo Art Generator +
+ + {/* Project Label */} +
+

+ Art Style Generator +

+
+
+ + {/* Decorative Elements - matching DevSphere style */} +
+
+
+
+ + {/* Subtle corner accents */} +
+
+
+ + {/* Project Description */} +
+

+ Artify by DevSphere is an AI-powered web application that transforms ordinary photos into stunning works of art. Users can choose from over 30 artistic styles to create personalized masterpieces in seconds. +

+

+ The application uses Google's Gemini AI to ensure high-quality transformations while preserving the original subject's identity. Built with Next.js, Artify offers live previews and instant downloads with a seamless user experience. +

+
+ + {/* Action Buttons */} +
+ + + +
+
+
+
+
+ ); +}; diff --git a/public/artify-screenshot.png b/public/artify-screenshot.png new file mode 100644 index 0000000..1cf39ae Binary files /dev/null and b/public/artify-screenshot.png differ