import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { FaGithub, FaLinkedin, FaFilePdf } from "react-icons/fa"; import { motion } from "framer-motion"; const projects = [ { title: "Project 1", description: "A brief description of project 1.", link: "https://github.com/yourgithub/project1", }, { title: "Project 2", description: "A brief description of project 2.", link: "https://github.com/yourgithub/project2", }, ]; export default function Portfolio() { return (

Tyler Chartrand

Software Engineer | Web Developer | Tech Enthusiast

{projects.map((project, index) => (

{project.title}

{project.description}

View Project →
))}
); }