Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion website/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,31 @@ sidebar_position: 1

**VibeStack Codex** is your free, collaborative AI development platform that empowers developers with intelligent coding assistance, seamless workflow automation, and access to 25+ AI models.

## 🎯 **The Future of Vibe Coding**
## � **See VibeStack Codex in Action**

Watch this demonstration video to see how VibeStack Codex transforms your development workflow:

<div style={{textAlign: 'center', margin: '2rem 0'}}>
<video
controls
width="100%"
style={{
maxWidth: '800px',
borderRadius: '12px',
boxShadow: '0 8px 32px rgba(0,0,0,0.12)',
background: '#000'
}}
>
<source src="https://bucket.anisurge.me/0712-02_1752326506968.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>

*This video showcases the key features and capabilities of VibeStack Codex in real-world usage scenarios.*

---

## �🎯 **The Future of Vibe Coding**

VibeStack Codex is at the forefront of the **vibe coding revolution** - a new approach to software development where developers express ideas in natural language and AI transforms them into working code. This paradigm shift, popularized by computer scientist Andrej Karpathy, focuses on outcomes over syntax, creativity over boilerplate.

Expand Down
43 changes: 43 additions & 0 deletions website/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,28 @@
border-color: rgba(255,255,255,0.5) !important;
}

/* Video Section */
.videoSection {
padding: 8rem 0;
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.videoContainer {
display: flex;
justify-content: center;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}

.videoContainer video {
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.videoContainer video:hover {
transform: scale(1.02);
}

/* Responsive Design */
@media screen and (max-width: 996px) {
.heroContent {
Expand Down Expand Up @@ -500,3 +522,24 @@
grid-template-columns: 1fr;
}
}

/* Responsive Design for Video */
@media screen and (max-width: 996px) {
.videoSection {
padding: 4rem 0;
}

.videoContainer {
padding: 0 1rem;
}
}

@media screen and (max-width: 576px) {
.videoSection {
padding: 3rem 0;
}

.videoContainer video {
border-radius: 12px;
}
}
37 changes: 37 additions & 0 deletions website/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,50 @@ function CTASection() {
);
}

function VideoSection() {
return (
<section className={styles.videoSection}>
<div className="container">
<div className={styles.sectionHeader}>
<Heading as="h2" className={styles.sectionTitle}>
See VibeStack Codex in Action
</Heading>
<p className={styles.sectionSubtitle}>
Watch how VibeStack Codex transforms your development workflow
</p>
</div>

<div className={styles.videoContainer}>
<video
autoPlay
loop
muted
playsInline
style={{
width: '100%',
height: 'auto',
borderRadius: '16px',
boxShadow: '0 20px 40px rgba(0,0,0,0.1)',
background: '#000'
}}
>
<source src="https://bucket.anisurge.me/0712-02_1752326506968.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
</div>
</section>
);
}

export default function Home(): ReactNode {
const {siteConfig} = useDocusaurusContext();
return (
<Layout
title="AI-Powered Development Platform"
description="VibeStack Codex - Free collaborative AI development platform with 25+ AI models, intelligent codebase management, and seamless workflow automation.">
<HeroSection />
<VideoSection />
<FeaturesSection />
<CTASection />
</Layout>
Expand Down