Files
my-portfolio/src/app/page.tsx
T
luna 912e5edb81
Build Check / build (pull_request) Successful in 34s
Build Check / push-image (pull_request) Has been skipped
Build Check / deploy-coolify (pull_request) Has been skipped
Add blog CMS with tracked public posts
2026-07-17 22:02:25 +00:00

33 lines
937 B
TypeScript

"use client";
import { useProfile } from "../context/ProfileContext";
import { Navbar } from "../components/Navbar";
import { Hero } from "../sections/Hero";
import { TopBlogs } from "../sections/TopBlogs";
import { WorkExperience } from "../sections/WorkExperience";
import { FeaturedProjects } from "../sections/FeaturedProjects";
import { Luna } from "../sections/Luna";
import { Affiliates } from "../sections/Affiliates";
import { Activity } from "../sections/Activity";
import { Footer } from "../sections/Footer";
export default function Home() {
const { experiences } = useProfile();
return (
<>
<Navbar />
<div className="space-y-20 pb-16 pt-28 sm:space-y-24 sm:pb-20 sm:pt-32">
<Hero />
<TopBlogs />
<WorkExperience experiences={experiences} />
<FeaturedProjects />
<Luna />
<Affiliates />
<Activity />
</div>
<Footer />
</>
);
}