You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
531 B
18 lines
531 B
<script lang="ts"> |
|
import FeaturedRepos from "$lib/components/featured_repos.svelte"; |
|
</script> |
|
|
|
<div class="flex flex-row"> |
|
<div class="hero bg-pr h-[calc(100vh-4rem)] md:basis-1/2"> |
|
<div class="hero-content text-center"> |
|
<div class="max-w-md prose"> |
|
<h1>GitTogether.xyz</h1> |
|
<h3>Code Collaboration over Nostr</h3> |
|
<p>Pull Requests, Issues, and Git Branch State</p> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="hero h-[calc(100vh-4rem)] md:basis-1/2"> |
|
<FeaturedRepos /> |
|
</div> |
|
</div>
|
|
|