mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import About from "../components/site/About";
|
|
import Contact from "../components/site/Contact";
|
|
import FeaturesSection from "../components/FeaturesSection";
|
|
import Footer from "../components/site/Footer ";
|
|
import Header from "../components/Header";
|
|
import Hero from "../components/Hero";
|
|
|
|
|
|
export default async function Home() {
|
|
return (
|
|
<div className="p-4 pt-16 mx-auto max-w-screen-md">
|
|
<h1 className="text-4xl font-bold mb-6 text-black">Welcome to Ballistic Builder</h1>
|
|
|
|
<div className="bg-white rounded-lg shadow-md p-6 mb-6">
|
|
<h2 className="text-2xl font-semibold mb-4 text-black">Build Your Next Project</h2>
|
|
<p className="text-gray-600 mb-4">
|
|
Create, customize, and manage your projects with our intuitive builder interface.
|
|
</p>
|
|
<a
|
|
href="/builder"
|
|
className="inline-block bg-blue-600 text-white px-6 py-2 rounded-md hover:bg-blue-700 transition-colors"
|
|
>
|
|
Get Started
|
|
</a>
|
|
</div>
|
|
|
|
<div className="bg-white rounded-lg shadow-md p-6">
|
|
<h2 className="text-2xl font-semibold mb-4 text-black">Features</h2>
|
|
<ul className="list-disc list-inside text-gray-600 space-y-2">
|
|
<li>Easy-to-use interface</li>
|
|
<li>Customizable components</li>
|
|
<li>Real-time preview</li>
|
|
<li>Export functionality</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|