Skip to content

Commit 96a3ced

Browse files
committed
remove announcement header from layout
1 parent f94ab26 commit 96a3ced

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

astrowind/src/components/CustomStyles.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ import '@fontsource-variable/inter';
3232
--aw-color-text-heading: rgb(0 0 0);
3333
--aw-color-text-default: rgb(16 16 16);
3434
--aw-color-text-muted: rgb(16 16 16 / 66%);
35-
/* --aw-color-bg-page: rgb(255 255 255); */
36-
--aw-color-bg-page: rgb(3 6 32);
35+
--aw-color-bg-page: rgb(255 255 255);
3736

3837
--aw-color-bg-page-dark: rgb(3 6 32);
3938

astrowind/src/layouts/PageLayout.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import Layout from '~/layouts/Layout.astro';
33
import Header from '~/components/widgets/Header.astro';
44
import Footer from '~/components/widgets/Footer.astro';
5-
import Announcement from '~/components/widgets/Announcement.astro';
5+
// import Announcement from '~/components/widgets/Announcement.astro';
66
77
import { headerData, footerData } from '~/navigation';
88
@@ -16,9 +16,9 @@ const { metadata } = Astro.props;
1616
---
1717

1818
<Layout metadata={metadata}>
19-
<slot name="announcement">
20-
<Announcement />
21-
</slot>
19+
<!-- <slot name="announcement"> -->
20+
<!-- <Announcement /> -->
21+
<!-- </slot> -->
2222
<slot name="header">
2323
<Header {...headerData} isSticky showRssFeed showToggleTheme />
2424
</slot>

0 commit comments

Comments
 (0)