Skip to content

Commit

Permalink
refactor(header-name): Rename ReactHeader to Header
Browse files Browse the repository at this point in the history
- Renames both file and import in `BaseLayout`
  • Loading branch information
AVGVSTVS96 committed Jul 6, 2024
1 parent 9427e87 commit 81b6a2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import '@fontsource-variable/inter';
import inter from '@fontsource-variable/inter/files/inter-latin-wght-normal.woff2?url';
import '@styles/global.css';
import Meta from '@components/Meta.astro';
import ReactHeader from '@components/ReactHeader.astro';
import Header from '@components/Header.astro';
import Footer from '@components/Footer.astro';
const { description, title } = Astro.props;
Expand Down Expand Up @@ -43,7 +43,7 @@ const { description, title } = Astro.props;
<slot name="head" />
</head>
<body class="flex min-h-dvh w-dvw flex-col items-center overflow-x-hidden">
<ReactHeader />
<Header />
<main class="flex grow">
<slot />
</main>
Expand Down

0 comments on commit 81b6a2a

Please sign in to comment.