- {["about", "experience", "projects", "skills", "contact"].map(
+ {["about", "experience", "projects", "businesses", "contact"].map(
(section) => (
)}
@@ -143,7 +143,7 @@ export function ProjectsSection({ projects }: ProjectsSectionProps) {
rel="noopener noreferrer"
>
- Demo
+ Go to site
)}
diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx
index 4ea19cb..dd02842 100644
--- a/app/routes/_index.tsx
+++ b/app/routes/_index.tsx
@@ -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() {
+