This commit is contained in:
Benjamin Toby 2026-06-13 12:32:29 +01:00
parent 163ad6d2b3
commit e8ef8fbeb7
3 changed files with 24 additions and 13 deletions

View File

@ -0,0 +1,18 @@
import { ScrollText } from "lucide-react";
import Button from "../lib/layout/Button";
type Props = {};
export default function ResumeButton({}: Props) {
return (
<Button
title="Benjamin Toby Resume"
beforeIcon={<ScrollText size={17} className="font-normal" />}
href="https://docs.google.com/document/d/1SQ5ERYmGs39LMo03GqL_Hs5kz1Ir8via-mPPByi6jyk/edit?usp=sharing"
variant="outlined"
className="grow w-full"
target="_blank"
>
Resume
</Button>
);
}

View File

@ -6,6 +6,7 @@ import Section from "@/src/components/lib/layout/Section";
import Span from "@/src/components/lib/layout/Span"; import Span from "@/src/components/lib/layout/Span";
import Stack from "@/src/components/lib/layout/Stack"; import Stack from "@/src/components/lib/layout/Stack";
import { Contact, ScrollText, Terminal } from "lucide-react"; import { Contact, ScrollText, Terminal } from "lucide-react";
import ResumeButton from "../../general/resume-button";
export default function Main() { export default function Main() {
return ( return (
@ -65,18 +66,7 @@ export default function Main() {
> >
Learn More Learn More
</Button> */} </Button> */}
<Button <ResumeButton />
title="Benjamin Toby Resume"
beforeIcon={
<ScrollText size={17} className="font-normal" />
}
href="https://docs.google.com/document/d/1SQ5ERYmGs39LMo03GqL_Hs5kz1Ir8via-mPPByi6jyk/edit?usp=sharing"
variant="outlined"
className="grow w-full"
target="_blank"
>
Resume
</Button>
</Row> </Row>
</Stack> </Stack>
</Section> </Section>

View File

@ -7,7 +7,8 @@ import Row from "@/src/components/lib/layout/Row";
import Section from "@/src/components/lib/layout/Section"; import Section from "@/src/components/lib/layout/Section";
import Span from "@/src/components/lib/layout/Span"; import Span from "@/src/components/lib/layout/Span";
import Stack from "@/src/components/lib/layout/Stack"; import Stack from "@/src/components/lib/layout/Stack";
import { Terminal } from "lucide-react"; import { ScrollText, Terminal } from "lucide-react";
import ResumeButton from "../../general/resume-button";
export default function Main() { export default function Main() {
return ( return (
@ -34,6 +35,8 @@ export default function Main() {
<li>Full-stack delivery with Next.js, Bun, and SQL</li> <li>Full-stack delivery with Next.js, Bun, and SQL</li>
</ul> </ul>
<ResumeButton />
<Divider /> <Divider />
<H2>Background</H2> <H2>Background</H2>