From 78b73b6914e65877b7957bf7a6cd079dd63c4e01 Mon Sep 17 00:00:00 2001
From: unknown
Date: Thu, 2 Oct 2025 01:49:30 +0530
Subject: [PATCH 1/2] feat: add About Us page with demo placeholder text (#14)
---
src/app/about/page.tsx | 70 +++++++++++++++++++++++++++++++++
src/app/page.tsx | 7 +++-
src/components/ui/separator.tsx | 14 +++++++
3 files changed, 90 insertions(+), 1 deletion(-)
create mode 100644 src/app/about/page.tsx
create mode 100644 src/components/ui/separator.tsx
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 (
+
+ )
+}
From 6e7e6de71db24c3085b453fde2f6a450a27a314f Mon Sep 17 00:00:00 2001
From: unknown
Date: Thu, 2 Oct 2025 02:03:51 +0530
Subject: [PATCH 2/2] chore: retrigger CI