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

refactor: updates root hero buttons #61

Merged
merged 1 commit into from
Sep 18, 2023
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
9 changes: 6 additions & 3 deletions src/routes/(root)/_root/components/hero.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { Standard as StandardLink, Action as ActionLink } from '$elements/links';
import { Action as ActionLink } from '$elements/links';
</script>

<section class="relative overflow-x-hidden">
Expand Down Expand Up @@ -28,9 +28,12 @@
<div
class="mt-20 flex flex-col items-center justify-center space-y-12 sm:flex-row sm:justify-start sm:space-x-4 sm:space-y-0">
<div>
<ActionLink href="/support">What is THAT Community?</ActionLink>
<ActionLink href="/tx">THAT Conference Texas</ActionLink>
</div>

<div>
<ActionLink href="/wi">THAT Conference Wisconsin</ActionLink>
</div>
<div><StandardLink href="/events">View all Events</StandardLink></div>
</div>
</div>
<div class="col-span-3 flex flex-col items-center justify-center">
Expand Down