Files
landingNew/client/src/pages/home.tsx
kekih047 d0e2aab49f Update website to showcase NeveTime Team's Minecraft development services
Integrates new Hero, Services, Portfolio, Navbar, and Footer components, customizes `index.html` with meta tags and fonts, and updates routing in `App.tsx` for the NeveTime Team landing page.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 251cdcbe-a43a-4217-bd52-93caca5808d1
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: c84c5fa8-591b-46e5-b031-ad4376019834
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/e6bb1a93-c366-4e7d-b74e-5aa29eda3fbe/251cdcbe-a43a-4217-bd52-93caca5808d1/z6fL1aj
Replit-Helium-Checkpoint-Created: true
2026-02-08 05:50:55 +00:00

39 lines
1.6 KiB
TypeScript

import { Navbar } from "@/components/navbar";
import { Hero } from "@/components/hero";
import { Services } from "@/components/services";
import { Portfolio } from "@/components/portfolio";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<div className="min-h-screen bg-background text-foreground font-sans">
<Navbar />
<main>
<Hero />
<Services />
<Portfolio />
{/* Contact CTA Section */}
<section id="contact" className="py-24 relative overflow-hidden">
<div className="absolute inset-0 bg-primary/5">
<div className="absolute inset-0 bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-[size:24px_24px]"></div>
</div>
<div className="container mx-auto px-4 relative z-10 text-center">
<h2 className="text-4xl md:text-5xl font-bold font-heading text-white mb-6">
Ready to <span className="text-primary">Build?</span>
</h2>
<p className="text-xl text-muted-foreground max-w-2xl mx-auto mb-10">
Let's turn your ideas into reality. Whether you need a simple plugin or a complex modpack, we are here to help.
</p>
<button className="bg-primary hover:bg-primary/90 text-background font-bold text-lg h-14 px-10 rounded-md transition-colors shadow-[0_0_20px_rgba(16,185,129,0.4)] hover:shadow-[0_0_30px_rgba(16,185,129,0.6)]">
Discuss Your Project
</button>
</div>
</section>
</main>
<Footer />
</div>
);
}