diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..c60b874 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,70 @@ + + +import { Card, CardContent } from "@/components/ui/card"; +import { Separator } from "@/components/ui/separator"; +import Link from "next/link"; + +export default function AboutPage() { + return ( +
+
+

+ About DevUI Components +

+

+ DevUI Components is a modern, open-source component library showcase built with shadcn/ui. Explore, copy, and reuse beautifully designed components in your React or Next.js projects. GitHub-ready and perfect for Hacktoberfest 2025! šŸš€ +

+
+ {/* Team/Project Purpose Section */} + + +

Meet the Team & Purpose

+

+ DevUI is built by passionate open-source contributors for the community. Our goal is to make it easy for developers to discover, preview, and use high-quality UI components in their projects. +

+

+ We believe in collaboration, learning, and sharing. Whether you’re a beginner or a pro, you’re welcome to contribute, suggest ideas, or just explore and enjoy the library! +

+
+
+ + {/* Features Section */} + + +

🌟 Features

+
    +
  • Shadcn/UI components with live previews
  • +
  • Syntax-highlighted code blocks for easy readability
  • +
  • One-click copy functionality to quickly grab code
  • +
  • Beautiful, minimal design with subtle accent colors
  • +
  • Fully responsive design with smooth animations and hover effects
  • +
  • Search & filter components by category
  • +
  • GitHub-ready for open-source contributions
  • +
+ + +

šŸŽØ Design & Components

+

+ Enjoy a clean, modern UI with subtle gradients, clean sans-serif fonts, and smooth transitions. Browse a growing collection of components—Buttons, Inputs, Cards, Avatars, Badges, and more—each with live previews and copyable code. +

+ + +

⚔ Open Source & Hacktoberfest

+

+ DevUI is GitHub-ready and welcomes contributions from everyone! Whether you want to add new components, improve designs, fix bugs, or suggest ideas, your PRs help us grow. Join us for Hacktoberfest 2025 and make DevUI Components the ultimate open-source showcase! +

+ + +

+ (This is demo placeholder text. Final content coming soon!) +

+
+
+ + {/* Back to Home Button */} + + ← Back to Home + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 6deafa8..3f34dc4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -47,7 +47,7 @@ const Index = () => { Copy, paste, and customize to build amazing UIs.

-
+
+ + +
diff --git a/src/components/ui/separator.tsx b/src/components/ui/separator.tsx new file mode 100644 index 0000000..46e80ee --- /dev/null +++ b/src/components/ui/separator.tsx @@ -0,0 +1,14 @@ +import * as React from "react" +import { cn } from "@/lib/utils" + +export interface SeparatorProps extends React.HTMLAttributes {} + +export function Separator({ className, ...props }: SeparatorProps) { + return ( +
+ ) +}