Skip to content

Commit

Permalink
finish timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
diogofrosario committed Sep 3, 2024
1 parent f6ab112 commit 02a1126
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ body {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding-top: 12rem;
}

/* The actual timeline (the vertical ruler) */
Expand Down
5 changes: 3 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { About, Header, Intro, Timeline } from "@/components/Sections";
import { About, Header, Intro, Skills, Timeline } from "@/components/Sections";

export default function Home() {
return (
<main className="h-full font-mono">
<Header />
<Intro />
<About />
<Timeline/>
<Timeline />
<Skills />
</main>
);
}
8 changes: 4 additions & 4 deletions src/components/Sections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function Header() {
};

return (
<div className="flex flex-row items-center justify-center h-50 w-full p-4 text-xl gap-16 font-mono bg-white fixed">
<div className="flex flex-row items-center justify-center h-50 w-full p-4 text-xl gap-16 font-mono bg-white fixed z-50">
<div className="header-btns cursor-pointer">
<a href="#about">About</a>{" "}
</div>
Expand Down Expand Up @@ -125,7 +125,7 @@ export function About() {

export function Timeline() {
return (
<div className="timeline h-auto w-full p-16" id="timeline">
<div className="timeline h-screen w-full" id="timeline">
<div className="container left">
<div className="content">
<h2>2019-Present</h2>
Expand Down Expand Up @@ -174,8 +174,8 @@ export function Timeline() {

export function Skills() {
return (
<div className="h-screen w-full">

<div className="bg-black text-white h-screen w-full" id="skills">
<p>skills</p>
</div>
)
}

0 comments on commit 02a1126

Please sign in to comment.