feat: update all sections

This commit is contained in:
afiqzudinhadi 2025-06-07 00:08:14 +08:00
parent 72cdecfdea
commit a38936fb9a
8 changed files with 212 additions and 54 deletions

View file

@ -5,11 +5,17 @@ import { ExperienceSection } from "@/components/experience-section";
import { ProjectsSection } from "@/components/projects-section";
import { ContactSection } from "@/components/contact-section";
import { portfolioData } from "@/data/portfolio";
import ProfileCard from "@/components/profile-card";
import avatar from "@/assets/avatar.png";
import { BusinessSection } from "~/components/business-section";
export const meta: MetaFunction = () => {
return [
{ title: `${portfolioData.profile.name} - Portfolio` },
{ name: "description", content: portfolioData.profile.bio },
{
name: "description",
content: portfolioData.profile.about?.description.join(" "),
},
];
};
@ -20,6 +26,7 @@ export default function Index() {
<HeroSection profile={portfolioData.profile} />
<ExperienceSection experiences={portfolioData.experiences} />
<ProjectsSection projects={portfolioData.projects} />
<BusinessSection businesses={portfolioData.businesses} />
<ContactSection profile={portfolioData.profile} />
</div>
);