Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add merch link to static site footer #104

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
mdiAndroid,
mdiApple,
mdiGithub,
mdiKey,
mdiMessageOutline,
mdiOfficeBuildingOutline,
mdiReddit,
mdiServerOutline,
mdiShoppingOutline,
mdiWeatherNight,
mdiWeatherSunny,
mdiWeb,
Expand All @@ -21,9 +23,9 @@
</script>

<div class="bg-dark/10 rounded-t-3xl mt-16 p-8">
<div class="max-w-screen-md mx-auto lg:py-8">
<div class="max-w-screen-lg mx-auto xl:py-8">
<Stack gap={8}>
<div class="grid grid-cols-2 gap-8 place-center lg:grid-cols-4">
<div class="grid grid-cols-2 gap-8 place-center lg:grid-cols-5">
<Stack>
<Heading size="tiny">Social</Heading>
<Link href="https://github.com/immich-app/immich" target="_blank" rel="noopener noreferrer">
Expand Down Expand Up @@ -73,17 +75,27 @@
</Stack>

<Stack>
<Heading size="tiny">Sites</Heading>
<Link href="https://immich.app" target="_blank" rel="noopener noreferrer">
<Heading size="tiny">Support</Heading>
<Link href="https://buy.immich.app" target="_blank" rel="noopener noreferrer">
<HStack>
<Icon icon={mdiWeb} size="1.5em" />
<Text>Documentation</Text>
<Icon icon={mdiKey} size="1.5em" />
<Text>Purchase</Text>
</HStack>
</Link>
<Link href="https://buy.immich.app" target="_blank" rel="noopener noreferrer">
<Link href="https://immich.store/" target="_blank" rel="noopener noreferrer">
<HStack>
<Icon icon={mdiShoppingOutline} size="1.5em" />
<Text>Merch</Text>
</HStack>
</Link>
</Stack>

<Stack>
<Heading size="tiny">Sites</Heading>
<Link href="https://immich.app" target="_blank" rel="noopener noreferrer">
<HStack>
<Icon icon={mdiWeb} size="1.5em" />
<Text>Buy Immich</Text>
<Text>Documentation</Text>
</HStack>
</Link>
<Link href="https://my.immich.app" target="_blank" rel="noopener noreferrer">
Expand Down