Skip to content
Open
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
48 changes: 44 additions & 4 deletions app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,53 @@ import CtaSection from '@/components/homepage/cta-section'

export default function Home() {
return (
<div className="flex flex-col">
<main className="flex-1">
<div className="min-h-screen flex flex-col font-sans transition-colors duration-300 bg-gradient-to-br from-slate-100 via-white to-blue-50 dark:from-neutral-950 dark:to-black dark:text-gray-100 text-gray-900">

{/* Main content area */}
<main className="flex-grow px-4 sm:px-6 lg:px-8 py-12 space-y-24">

{/* Hero Section */}
<HeroSection />
<section className="
max-w-7xl mx-auto
bg-white bg-opacity-90 dark:bg-neutral-900
p-10 rounded-3xl
border border-slate-200 dark:border-neutral-700
shadow-md
transition-all duration-300 ease-in-out
hover:scale-[1.02]
hover:shadow-xl
hover:border-blue-300
hover:ring-4
hover:ring-blue-100
dark:hover:ring-emerald-500/30
backdrop-blur-md
">
<HeroSection />
</section>

{/* CTA Section */}
<CtaSection />
<section className="
max-w-4xl mx-auto
bg-gradient-to-br from-slate-50 to-slate-100 dark:from-neutral-900 dark:to-neutral-950
p-10 rounded-3xl
border border-slate-200 dark:border-neutral-700
shadow-md
transition-all duration-300 ease-in-out
hover:scale-[1.02]
hover:shadow-xl
hover:border-indigo-300
hover:ring-4
hover:ring-indigo-100
dark:hover:ring-emerald-500/30
">
<CtaSection />
</section>
</main>

{/* Footer */}
<footer className="bg-slate-100 dark:bg-neutral-900 text-gray-700 dark:text-gray-400 text-center py-5 text-sm border-t border-slate-300 dark:border-neutral-800 shadow-inner">
© 2025 <span className="text-blue-700 dark:text-emerald-400 font-semibold">Your Company</span>. All rights reserved.
</footer>
</div>
)
}
43 changes: 43 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@
"class-variance-authority": "^0.7.1",
"dompurify": "^3.2.5",
"dotenv": "^16.5.0",
"lucide-react": "^0.511.0",
"framer-motion": "^12.19.1",
"jsdom": "^26.1.0",
"lucide-react": "^0.511.0",
"mongoose": "^8.12.1",
"next": "15.3.2",
"next-auth": "^4.24.11",
Expand All @@ -51,9 +52,9 @@
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/zxcvbn": "^4.4.5",
"eslint": "9.26.0",
"eslint-config-next": "15.3.2",
"@types/zxcvbn": "^4.4.5",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.7",
"tailwindcss-animate": "^1.0.7",
Expand Down
Loading