mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 18:58:10 +00:00
Initial Commit
This commit is contained in:
257
app/page.tsx
257
app/page.tsx
@ -1,103 +1,168 @@
|
||||
// app/page.tsx
|
||||
import Image from "next/image";
|
||||
import Button from "@/components/ui/Button"; // Use the reusable button
|
||||
import {
|
||||
FaCogs,
|
||||
FaProjectDiagram,
|
||||
FaCode,
|
||||
FaUsers,
|
||||
FaBuilding,
|
||||
FaCar,
|
||||
FaLaptopCode,
|
||||
} from "react-icons/fa"; // Import icons
|
||||
|
||||
export default function Home() {
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
|
||||
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/next.svg"
|
||||
alt="Next.js logo"
|
||||
width={180}
|
||||
height={38}
|
||||
priority
|
||||
/>
|
||||
<ol className="list-inside list-decimal text-sm/6 text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
|
||||
<li className="mb-2 tracking-[-.01em]">
|
||||
Get started by editing{" "}
|
||||
<code className="bg-black/[.05] dark:bg-white/[.06] px-1 py-0.5 rounded font-[family-name:var(--font-geist-mono)] font-semibold">
|
||||
app/page.tsx
|
||||
</code>
|
||||
.
|
||||
</li>
|
||||
<li className="tracking-[-.01em]">
|
||||
Save and see your changes instantly.
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
<div className="flex gap-4 items-center flex-col sm:flex-row">
|
||||
<a
|
||||
className="rounded-full border border-solid border-transparent transition-colors flex items-center justify-center bg-foreground text-background gap-2 hover:bg-[#383838] dark:hover:bg-[#ccc] font-medium text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5 sm:w-auto"
|
||||
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
<>
|
||||
{/* Hero Section */}
|
||||
<section className="relative h-[70vh] md:h-[85vh] flex items-center justify-center text-center bg-dark text-light overflow-hidden">
|
||||
{/* Background Video/Image Placeholder */}
|
||||
{/* TODO: Replace with actual <video> or Next/Image */}
|
||||
<div className="absolute inset-0 z-0 opacity-30">
|
||||
<Image
|
||||
src="/hero-bg.jpg" // Add a placeholder image in /public
|
||||
alt="Digital transformation background"
|
||||
layout="fill"
|
||||
objectFit="cover"
|
||||
quality={75}
|
||||
/>
|
||||
{/* OR a video element:
|
||||
<video
|
||||
autoPlay
|
||||
loop
|
||||
muted
|
||||
playsInline
|
||||
className="w-full h-full object-cover"
|
||||
poster="/placeholder-hero-bg.jpg" // Poster image
|
||||
>
|
||||
<Image
|
||||
className="dark:invert"
|
||||
src="/vercel.svg"
|
||||
alt="Vercel logomark"
|
||||
width={20}
|
||||
height={20}
|
||||
/>
|
||||
Deploy now
|
||||
</a>
|
||||
<a
|
||||
className="rounded-full border border-solid border-black/[.08] dark:border-white/[.145] transition-colors flex items-center justify-center hover:bg-[#f2f2f2] dark:hover:bg-[#1a1a1a] hover:border-transparent font-medium text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5 w-full sm:w-auto md:w-[158px]"
|
||||
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Read our docs
|
||||
</a>
|
||||
<source src="/your-video.mp4" type="video/mp4" />
|
||||
Your browser does not support the video tag.
|
||||
</video> */}
|
||||
</div>
|
||||
</main>
|
||||
<footer className="row-start-3 flex gap-[24px] flex-wrap items-center justify-center">
|
||||
<a
|
||||
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
|
||||
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Image
|
||||
aria-hidden
|
||||
src="/file.svg"
|
||||
alt="File icon"
|
||||
width={16}
|
||||
height={16}
|
||||
/>
|
||||
Learn
|
||||
</a>
|
||||
<a
|
||||
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
|
||||
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Image
|
||||
aria-hidden
|
||||
src="/window.svg"
|
||||
alt="Window icon"
|
||||
width={16}
|
||||
height={16}
|
||||
/>
|
||||
Examples
|
||||
</a>
|
||||
<a
|
||||
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
|
||||
href="https://nextjs.org?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<Image
|
||||
aria-hidden
|
||||
src="/globe.svg"
|
||||
alt="Globe icon"
|
||||
width={16}
|
||||
height={16}
|
||||
/>
|
||||
Go to nextjs.org →
|
||||
</a>
|
||||
</footer>
|
||||
</div>
|
||||
{/* Overlay */}
|
||||
<div className="absolute inset-0 bg-gradient-to-b from-black/50 to-black/80 z-10"></div>
|
||||
|
||||
{/* Content */}
|
||||
<div className="relative z-20 container mx-auto px-6">
|
||||
<h1 className="text-4xl sm:text-5xl md:text-6xl lg:text-7xl font-bold mb-4 leading-tight text-primary animate-fade-in-up">
|
||||
Where Innovation <br className="hidden md:block" /> Meets
|
||||
Excellence.
|
||||
</h1>
|
||||
<p className="text-lg md:text-xl max-w-3xl mx-auto mb-8 text-gray-300 animate-fade-in-up animation-delay-300">
|
||||
Welcome to Owethu Managed Services. We deliver cutting-edge IT
|
||||
solutions, empowering businesses to thrive in the ever-evolving
|
||||
digital landscape with unmatched industry expertise.
|
||||
</p>
|
||||
<Button
|
||||
href="/about"
|
||||
size="lg"
|
||||
className="animate-fade-in-up animation-delay-600"
|
||||
>
|
||||
Learn More →
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Core Services Section */}
|
||||
<section className="py-20 md:py-28 bg-light-gray">
|
||||
<div className="container mx-auto px-6 text-center">
|
||||
<h2 className="text-3xl md:text-4xl font-bold mb-4 text-dark">
|
||||
Core Services
|
||||
</h2>
|
||||
<p className="text-lg text-gray-600 mb-12 md:mb-16 max-w-2xl mx-auto">
|
||||
Tailored solutions designed to drive growth, optimize productivity,
|
||||
and solve your most complex business challenges.
|
||||
</p>
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12">
|
||||
{/* Service Card 1: Resource Augmentation */}
|
||||
<div className="bg-light p-8 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 text-left">
|
||||
<FaCogs className="text-primary text-4xl mb-4" />
|
||||
<h3 className="text-xl font-semibold mb-3 text-dark">
|
||||
Resource Augmentation
|
||||
</h3>
|
||||
<p className="text-gray-600">
|
||||
Access top-tier IT talent seamlessly integrated with your team.
|
||||
Skilled professionals for short-term projects or long-term
|
||||
engagements.
|
||||
</p>
|
||||
</div>
|
||||
{/* Service Card 2: Project Management */}
|
||||
<div className="bg-light p-8 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 text-left">
|
||||
<FaProjectDiagram className="text-primary text-4xl mb-4" />
|
||||
<h3 className="text-xl font-semibold mb-3 text-dark">
|
||||
Project Management
|
||||
</h3>
|
||||
<p className="text-gray-600">
|
||||
Expert management ensuring on-time, within-budget delivery with
|
||||
superior results, risk mitigation, and maximum efficiency.
|
||||
</p>
|
||||
</div>
|
||||
{/* Service Card 3: Product Development */}
|
||||
<div className="bg-light p-8 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300 text-left">
|
||||
<FaCode className="text-primary text-4xl mb-4" />
|
||||
<h3 className="text-xl font-semibold mb-3 text-dark">
|
||||
Product Development
|
||||
</h3>
|
||||
<p className="text-gray-600">
|
||||
Creating innovative, scalable digital products from concept to
|
||||
deployment to enhance efficiency and foster business growth.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Client Logos Section */}
|
||||
<section className="py-16 md:py-20 bg-light">
|
||||
<div className="container mx-auto px-6 text-center">
|
||||
<h2 className="text-3xl md:text-4xl font-bold mb-12 text-dark">
|
||||
Trusted By Industry Leaders
|
||||
</h2>
|
||||
{/* TODO: Implement Auto-Sliding Panel (e.g., using Swiper.js or react-slick) */}
|
||||
<div className="flex flex-wrap justify-center items-center gap-10 md:gap-16 opacity-70">
|
||||
{/* Placeholder Logos - Replace with actual client logos */}
|
||||
<FaBuilding
|
||||
title="Financial Services Client"
|
||||
className="text-5xl text-gray-500 hover:text-primary transition-colors"
|
||||
/>
|
||||
<FaCar
|
||||
title="Automotive Client"
|
||||
className="text-5xl text-gray-500 hover:text-primary transition-colors"
|
||||
/>
|
||||
<FaLaptopCode
|
||||
title="Tech Industry Client"
|
||||
className="text-5xl text-gray-500 hover:text-primary transition-colors"
|
||||
/>
|
||||
<FaUsers
|
||||
title="Generic Client 1"
|
||||
className="text-5xl text-gray-500 hover:text-primary transition-colors"
|
||||
/>
|
||||
<FaBuilding
|
||||
title="Generic Client 2"
|
||||
className="text-5xl text-gray-500 hover:text-primary transition-colors"
|
||||
/>
|
||||
</div>
|
||||
<p className="mt-8 text-gray-500 italic">
|
||||
Showcasing key clients across financial services, automotive, and
|
||||
tech industries.
|
||||
{/* (Auto-sliding panel coming soon!) */}
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Call to Action (Optional but good practice) */}
|
||||
<section className="bg-primary text-dark py-16">
|
||||
<div className="container mx-auto px-6 text-center">
|
||||
<h2 className="text-3xl font-bold mb-4">Ready to Innovate?</h2>
|
||||
<p className="text-lg mb-8 max-w-xl mx-auto">
|
||||
Let's discuss how OMS can help transform your business with
|
||||
cutting-edge technology solutions.
|
||||
</p>
|
||||
<Button href="/contact" variant="secondary" size="lg">
|
||||
Get In Touch
|
||||
</Button>
|
||||
</div>
|
||||
</section>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user