Skip to content

Commit b51af54

Browse files
refactor(index): added <Themes/> and <Updates/> section to <Layout/>
- fix code formatting
1 parent 9920624 commit b51af54

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/pages/index.astro

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ import '../styles/global.css';
55
import Home from '../components/sections/Home.astro';
66
import Features from '../components/sections/Features.astro';
77
import Footer from '../components/common/Footer.astro';
8+
import Updates from '../components/sections/Updates.astro';
9+
import Themes from '../components/sections/Themes.astro';
810
---
911

1012
<Layout>
11-
12-
<main class="bg-linear-135 from-[#FC4850] to-[#C5383F]">
13-
<Navbar />
14-
<Home />
15-
<Features />
16-
<Footer/>
13+
<main class="bg-[#1a1a1a]">
14+
<Navbar />
15+
<Home />
16+
<Themes />
17+
<Features />
18+
<Updates />
19+
<Footer />
1720
</main>
1821
</Layout>

0 commit comments

Comments
 (0)