portfolio nearly complete, needs viewtesting on different moniters and screens and needs about me section, possibly files for production.

This commit is contained in:
2026-01-05 23:46:21 -06:00
parent da75479555
commit 6975f5aeab
26 changed files with 655 additions and 95 deletions

View File

@@ -2,7 +2,8 @@ import React, { useEffect, useMemo, useRef, useState } from "react";
import { Navbar } from "./components/Navbar";
import { Section } from "./components/Section";
import { Hero } from "./components/Hero";
import { Placeholder } from "./components/Placeholder";
import { Projects } from "./components/Projects";
import { Resume } from "./components/Resume";
import { Footer } from "./components/Footer";
export default function App() {
@@ -46,9 +47,9 @@ return (
<main>
<Section id="home"><Hero /></Section>
<GradientBand />
<Section id="projects"><Placeholder title="Projects" /></Section>
<Section id="projects"><Projects /></Section>
<GradientBand />
<Section id="experience"><Placeholder title="Experience" /></Section>
<Section id="experience"><Resume /></Section>
</main>