first commit
This commit is contained in:
commit
7c46ee6909
107 changed files with 5563 additions and 0 deletions
37
frontend/src/components/home/Separator.astro
Normal file
37
frontend/src/components/home/Separator.astro
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
const { text } = Astro.props
|
||||
---
|
||||
|
||||
<div class="relative my-16">
|
||||
<div class="relative w-full pl-5 overflow-x-hidden md:pl-0">
|
||||
<div
|
||||
class="absolute w-full h-px bg-gradient-to-r from-transparent to-white md:from-white dark:from-transparent dark:to-neutral-950 md:dark:from-neutral-950 md:via-transparent md:dark:via-transparent md:to-white md:dark:to-neutral-950"
|
||||
>
|
||||
</div>
|
||||
<div
|
||||
class="w-full h-px border-t border-dashed border-neutral-300 dark:border-neutral-600"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="absolute flex items-center justify-center w-auto h-auto px-3 py-1.5 uppercase tracking-widest space-x-1 text-[0.6rem] md:-translate-x-1/2 -translate-y-1/2 border rounded-full bg-white dark:bg-neutral-900 text-neutral-400 left-0 md:ml-0 ml-5 md:left-1/2 border-neutral-100 dark:border-neutral-800 shadow-sm"
|
||||
>
|
||||
<p class="leading-none">{text}</p>
|
||||
<div
|
||||
class="flex items-center justify-center w-5 h-5 translate-x-1 border rounded-full border-neutral-100 dark:border-neutral-800"
|
||||
>
|
||||
<svg
|
||||
class="w-3 h-3"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke-width="1.5"
|
||||
stroke="currentColor"
|
||||
><path
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M12 4.5v15m0 0l6.75-6.75M12 19.5l-6.75-6.75"></path></svg
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue