2023-01-30 00:04:05 +00:00
|
|
|
<script lang="ts">
|
2024-12-07 00:59:18 +00:00
|
|
|
import ExternalLink from "$lib/components/ExternalLink.svelte";
|
|
|
|
|
import Portfolio from "./Portfolio.svelte";
|
|
|
|
|
// @ts-expect-error: Cannot find module '$lib/content/uses/development.md' or its corresponding type declarations.ts(2307)
|
|
|
|
|
import OldWebsite from "$lib/content/portfolio/personal/old-website.md";
|
|
|
|
|
// @ts-expect-error: Cannot find module '$lib/content/uses/development.md' or its corresponding type declarations.ts(2307)
|
|
|
|
|
import PersonalWebsiteSvelteKit from "$lib/content/portfolio/personal/personal-website-sveltekit.md";
|
|
|
|
|
// @ts-expect-error: Cannot find module '$lib/content/uses/development.md' or its corresponding type declarations.ts(2307)
|
|
|
|
|
import WeddingWebsite from "$lib/content/portfolio/personal/wedding-website.md";
|
|
|
|
|
// @ts-expect-error: Cannot find module '$lib/content/uses/development.md' or its corresponding type declarations.ts(2307)
|
|
|
|
|
import MarkShellnutArchitect from "$lib/content/portfolio/professional/mark-shellnut-architect.md";
|
|
|
|
|
import type { ExternalLinkType } from "$lib/types/externalLinkType";
|
|
|
|
|
import { Tabs } from "bits-ui";
|
|
|
|
|
import personalSite from "../../lib/assets/images/portfolio/Bradley_Shellnut_New_Site.png?enhanced";
|
|
|
|
|
import shellnutArchitectWebsite from "../../lib/assets/images/portfolio/Mark_Shellnut_Architect.png?enhanced";
|
|
|
|
|
import oldSite from "../../lib/assets/images/portfolio/Old_Website_Bradley_Shellnut.png?enhanced";
|
|
|
|
|
import weddingWebsite from "../../lib/assets/images/portfolio/Wedding_Website.png?enhanced";
|
2023-01-30 00:04:05 +00:00
|
|
|
</script>
|
|
|
|
|
|
2024-12-03 17:35:23 +00:00
|
|
|
{#snippet links(externalLinks: ExternalLinkType[])}
|
|
|
|
|
<span>
|
|
|
|
|
{#each externalLinks as link}
|
|
|
|
|
<ExternalLink
|
|
|
|
|
ariaLabel={link.ariaLabel}
|
|
|
|
|
href={link.href}
|
|
|
|
|
icon={link.icon}
|
|
|
|
|
showIcon={link.showIcon}
|
|
|
|
|
>
|
|
|
|
|
{link.text}
|
|
|
|
|
</ExternalLink>
|
|
|
|
|
{/each}
|
|
|
|
|
</span>
|
|
|
|
|
{/snippet}
|
|
|
|
|
|
2024-12-03 19:55:16 +00:00
|
|
|
{#snippet details(portfolioDetails)}
|
|
|
|
|
{@const PortfolioDetails = portfolioDetails}
|
|
|
|
|
<PortfolioDetails />
|
2024-12-03 17:35:23 +00:00
|
|
|
{/snippet}
|
|
|
|
|
|
2023-01-31 07:10:17 +00:00
|
|
|
<h1>Portfolio!</h1>
|
2024-12-07 00:59:18 +00:00
|
|
|
<Tabs.Root value="personal">
|
|
|
|
|
<Tabs.List>
|
|
|
|
|
<Tabs.Trigger value="personal"><span>Personal</span></Tabs.Trigger>
|
|
|
|
|
<Tabs.Trigger value="professional"><span>Professional</span></Tabs.Trigger>
|
|
|
|
|
</Tabs.List>
|
|
|
|
|
<Tabs.Content value="personal">
|
|
|
|
|
<Portfolio
|
|
|
|
|
name="Personal Website"
|
2023-12-06 00:43:37 +00:00
|
|
|
style="max-height: 550px;"
|
2023-07-13 05:53:25 +00:00
|
|
|
src={personalSite}
|
|
|
|
|
loading="eager"
|
2024-12-03 17:35:23 +00:00
|
|
|
alt="Picture of Bradley Shellnut's Personal Website"
|
|
|
|
|
{links}
|
|
|
|
|
{details}
|
|
|
|
|
portfolioDetails={PersonalWebsiteSvelteKit}
|
2024-12-07 00:59:18 +00:00
|
|
|
externalLinks={[
|
|
|
|
|
{
|
|
|
|
|
ariaLabel: "View GitHub repository for my personal website",
|
|
|
|
|
href: "https://github.com/BradNut/personal-website-sveltekit",
|
|
|
|
|
icon: GitHub,
|
|
|
|
|
showIcon: true,
|
|
|
|
|
text: "GitHub repository",
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
></Portfolio>
|
|
|
|
|
<Portfolio
|
|
|
|
|
name="Wedding Website"
|
2023-12-06 00:43:37 +00:00
|
|
|
style="max-height: 550px;"
|
2023-07-13 05:53:25 +00:00
|
|
|
src={weddingWebsite}
|
2024-12-03 17:35:23 +00:00
|
|
|
alt="Picture of NextJS Wedding Website"
|
|
|
|
|
{links}
|
|
|
|
|
{details}
|
|
|
|
|
portfolioDetails={WeddingWebsite}
|
2024-12-07 00:59:18 +00:00
|
|
|
externalLinks={[
|
|
|
|
|
{
|
|
|
|
|
ariaLabel: "View GitHub repository for the wedding site",
|
|
|
|
|
href: "https://github.com/BradNut/weddingsite",
|
|
|
|
|
icon: GitHub,
|
|
|
|
|
showIcon: true,
|
|
|
|
|
text: "GitHub repository",
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
<Portfolio
|
|
|
|
|
name="Old Personal Website"
|
2023-07-13 05:53:25 +00:00
|
|
|
style="max-height: 320px;"
|
|
|
|
|
src={oldSite}
|
2024-12-03 17:35:23 +00:00
|
|
|
alt="Home Page of the old bradleyshellnut.com website"
|
|
|
|
|
{links}
|
|
|
|
|
{details}
|
|
|
|
|
portfolioDetails={OldWebsite}
|
2024-12-07 00:59:18 +00:00
|
|
|
externalLinks={[
|
|
|
|
|
{
|
|
|
|
|
ariaLabel: "Archive of bradleyshellnut.com",
|
|
|
|
|
href: "https://web.archive.org/web/20201205233507/https://bradleyshellnut.com/about",
|
|
|
|
|
icon: GitHub,
|
|
|
|
|
showIcon: true,
|
|
|
|
|
text: "Link to an archive snapshot",
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</Tabs.Content>
|
|
|
|
|
<Tabs.Content value="professional">
|
|
|
|
|
<Portfolio
|
|
|
|
|
name="Mark Shellnut Architect"
|
2023-12-06 00:43:37 +00:00
|
|
|
style="max-height: 550px;"
|
2023-07-13 05:53:25 +00:00
|
|
|
src={shellnutArchitectWebsite}
|
2024-12-03 17:35:23 +00:00
|
|
|
alt="Picture of Mark Shellnut Architect's Website"
|
|
|
|
|
{links}
|
|
|
|
|
{details}
|
|
|
|
|
portfolioDetails={MarkShellnutArchitect}
|
2024-12-07 00:59:18 +00:00
|
|
|
externalLinks={[
|
|
|
|
|
{
|
|
|
|
|
ariaLabel: "View Mark Shellnut Architect",
|
|
|
|
|
href: "https://markshellnutarchitect.com",
|
|
|
|
|
showIcon: false,
|
|
|
|
|
text: "Link to Mark Shellnut Architect",
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</Tabs.Content>
|
|
|
|
|
</Tabs.Root>
|
2023-01-31 07:10:17 +00:00
|
|
|
|
|
|
|
|
<style lang="postcss">
|
2024-12-07 00:59:18 +00:00
|
|
|
:global([data-tabs-root]) {
|
2023-07-13 05:53:25 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
2023-09-28 09:02:11 +00:00
|
|
|
&[data-orientation="vertical"] {
|
2023-07-13 05:53:25 +00:00
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-07 00:59:18 +00:00
|
|
|
@media (min-width: 1000px) {
|
2023-04-20 22:18:23 +00:00
|
|
|
max-width: 50vw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-07 00:59:18 +00:00
|
|
|
:global([data-tabs-list]) {
|
2023-02-28 23:42:00 +00:00
|
|
|
display: grid;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
|
place-content: start;
|
|
|
|
|
place-items: center;
|
|
|
|
|
margin-bottom: 1.5rem;
|
2023-07-13 05:53:25 +00:00
|
|
|
cursor: default;
|
|
|
|
|
user-select: none;
|
2023-02-28 23:42:00 +00:00
|
|
|
}
|
|
|
|
|
|
2024-12-07 00:59:18 +00:00
|
|
|
:global([data-tabs-trigger]) {
|
2024-12-03 19:55:16 +00:00
|
|
|
font-size: var(--h2);
|
2024-12-07 00:59:18 +00:00
|
|
|
}
|
2024-12-03 19:55:16 +00:00
|
|
|
|
2024-12-07 00:59:18 +00:00
|
|
|
:global([data-state="active"]) {
|
|
|
|
|
span {
|
|
|
|
|
border-bottom: 2px solid var(--shellYellow);
|
2023-01-31 07:10:17 +00:00
|
|
|
}
|
|
|
|
|
}
|
2023-07-13 05:53:25 +00:00
|
|
|
|
2024-12-07 00:59:18 +00:00
|
|
|
:global([data-state="inactive"]) {
|
|
|
|
|
span {
|
|
|
|
|
border-bottom: 2px solid var(--white);
|
|
|
|
|
}
|
2023-01-31 07:10:17 +00:00
|
|
|
}
|
2024-12-07 00:59:18 +00:00
|
|
|
</style>
|