Skip to content

Commit 348e058

Browse files
committed
feat: update homepage
1 parent 6f6f91e commit 348e058

File tree

15 files changed

+47
-37
lines changed

15 files changed

+47
-37
lines changed

src/assets/favicons/AIOS.svg

Lines changed: 1 addition & 0 deletions
Loading

src/assets/favicons/favicon.ico

-13.6 KB
Binary file not shown.

src/assets/favicons/favicon.svg

Lines changed: 1 addition & 9 deletions
Loading
1.11 MB
Loading
1.41 MB
Loading
3.83 MB
Loading
154 KB
Loading

src/components/Logo.astro

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
---
22
import { SITE } from 'astrowind:config';
3+
import favIconSvg from '~/assets/favicons/favicon.svg';
34
---
45

56
<span
6-
class="self-center ml-2 rtl:ml-0 rtl:mr-2 text-2xl md:text-xl font-bold text-gray-900 whitespace-nowrap dark:text-white"
7+
class="self-center ml-2 rtl:ml-0 rtl:mr-2 flex items-center gap-2 text-2xl md:text-xl font-bold text-gray-900 whitespace-nowrap dark:text-white"
78
>
8-
🚀 {SITE?.name}
9+
<img
10+
src={favIconSvg.src}
11+
alt=""
12+
width={32}
13+
height={32}
14+
class="object-contain"
15+
/>
16+
{SITE?.name}
917
</span>

src/components/widgets/Content.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const {
3737
tagline={tagline}
3838
classes={{
3939
container: 'max-w-xl sm:mx-auto lg:max-w-2xl',
40-
title: 'text-4xl md:text-5xl font-bold tracking-tighter mb-4 font-heading',
40+
title: 'text-3xl md:text-4xl font-bold tracking-tighter mb-4 font-heading',
4141
subtitle: 'max-w-3xl mx-auto sm:text-center text-xl text-muted dark:text-slate-400',
4242
}}
4343
/>

src/layouts/LandingLayout.astro

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ const { metadata } = Astro.props;
1313
---
1414

1515
<PageLayout metadata={metadata}>
16-
<Fragment slot="announcement">
17-
<slot name="announcement" />
18-
</Fragment>
1916
<Fragment slot="header">
2017
<slot name="header">
2118
<Header

0 commit comments

Comments
 (0)