Skip to content

Commit 2e29585

Browse files
Create index.html
1 parent d633303 commit 2e29585

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

index.html

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
import { motion } from "framer-motion";
2+
import { Card, CardContent } from "@/components/ui/card";
3+
import { Button } from "@/components/ui/button";
4+
import { Github, Linkedin, Mail, Users, Rocket } from "lucide-react";
5+
6+
export default function App() {
7+
return (
8+
<div className="min-h-screen bg-gray-950 text-gray-100">
9+
{/* Header */}
10+
<header className="text-center py-12 bg-gradient-to-r from-purple-600 to-indigo-600">
11+
<motion.h1
12+
className="text-5xl font-bold mb-4"
13+
initial={{ opacity: 0, y: -50 }}
14+
animate={{ opacity: 1, y: 0 }}
15+
>
16+
🚀 Your Organization Name
17+
</motion.h1>
18+
<p className="text-lg opacity-80">
19+
Innovating • Collaborating • Building for the Future
20+
</p>
21+
<div className="mt-6 flex justify-center gap-4">
22+
<Button variant="secondary" className="rounded-2xl shadow-lg">
23+
<Github className="mr-2 h-4 w-4" /> GitHub
24+
</Button>
25+
<Button variant="secondary" className="rounded-2xl shadow-lg">
26+
<Linkedin className="mr-2 h-4 w-4" /> LinkedIn
27+
</Button>
28+
<Button variant="secondary" className="rounded-2xl shadow-lg">
29+
<Mail className="mr-2 h-4 w-4" /> Contact
30+
</Button>
31+
</div>
32+
</header>
33+
34+
{/* About Section */}
35+
<section className="max-w-5xl mx-auto py-16 px-6">
36+
<h2 className="text-3xl font-semibold text-center mb-10">🌟 About Us</h2>
37+
<p className="text-center text-gray-300 leading-relaxed max-w-3xl mx-auto">
38+
We are a team of passionate developers, innovators, and problem-solvers.
39+
Our mission is to build impactful open-source projects, experiment with
40+
cutting-edge technologies, and create a strong, collaborative community.
41+
</p>
42+
</section>
43+
44+
{/* Tech Stack */}
45+
<section className="bg-gray-900 py-16">
46+
<h2 className="text-3xl font-semibold text-center mb-10">🛠 Our Tech Stack</h2>
47+
<div className="grid grid-cols-2 md:grid-cols-4 gap-6 max-w-4xl mx-auto">
48+
{["Java", "Python", "JavaScript", "React", "Node.js", "Docker", "MongoDB", "GitHub Actions"].map((tech) => (
49+
<Card key={tech} className="bg-gray-800 border-gray-700">
50+
<CardContent className="text-center py-6">
51+
<p className="font-medium">{tech}</p>
52+
</CardContent>
53+
</Card>
54+
))}
55+
</div>
56+
</section>
57+
58+
{/* Projects */}
59+
<section className="max-w-5xl mx-auto py-16 px-6">
60+
<h2 className="text-3xl font-semibold text-center mb-10">🚀 Featured Projects</h2>
61+
<div className="grid md:grid-cols-3 gap-6">
62+
{[
63+
{ title: "Project One", desc: "A cool tool solving real-world problems" },
64+
{ title: "Project Two", desc: "Open-source experiment with big results" },
65+
{ title: "Project Three", desc: "Because every org needs a fun side project" },
66+
].map((project, i) => (
67+
<Card key={i} className="bg-gray-800 border-gray-700 shadow-lg hover:shadow-xl transition">
68+
<CardContent className="p-6">
69+
<h3 className="text-xl font-semibold mb-2">{project.title}</h3>
70+
<p className="text-gray-400">{project.desc}</p>
71+
<Button variant="outline" className="mt-4 w-full rounded-xl">
72+
<Rocket className="mr-2 h-4 w-4" /> View Repo
73+
</Button>
74+
</CardContent>
75+
</Card>
76+
))}
77+
</div>
78+
</section>
79+
80+
{/* Footer */}
81+
<footer className="text-center py-8 bg-gray-900 text-gray-400">
82+
<p>© {new Date().getFullYear()} Your Organization Name. All Rights Reserved.</p>
83+
<div className="flex justify-center gap-4 mt-4">
84+
<Github className="h-5 w-5 cursor-pointer hover:text-white" />
85+
<Linkedin className="h-5 w-5 cursor-pointer hover:text-white" />
86+
<Mail className="h-5 w-5 cursor-pointer hover:text-white" />
87+
<Users className="h-5 w-5 cursor-pointer hover:text-white" />
88+
</div>
89+
</footer>
90+
</div>
91+
);
92+
}

0 commit comments

Comments
 (0)