Clone Dispel.com website

This commit is contained in:
gpt-engineer-app[bot]
2025-09-15 07:51:08 +00:00
parent da479fa8a6
commit 026fa73120
14 changed files with 906 additions and 121 deletions

View File

@@ -1,12 +1,18 @@
// Update this page (the content is just a fallback if you fail to update the page)
import React from 'react';
import Header from '@/components/Header';
import Footer from '@/components/Footer';
import Hero from '@/components/Hero';
import CompanyBlurb from '@/components/CompanyBlurb';
const Index = () => {
return (
<div className="flex min-h-screen items-center justify-center bg-background">
<div className="text-center">
<h1 className="mb-4 text-4xl font-bold">Welcome to Your Blank App</h1>
<p className="text-xl text-muted-foreground">Start building your amazing project here!</p>
</div>
<div className="min-h-screen bg-background">
<Header />
<main>
<Hero />
<CompanyBlurb />
</main>
<Footer />
</div>
);
};