avoid component <-> page naming conflicts

Co-authored-by: Petter Sæterøy <potetmos1@users.noreply.github.com>
This commit is contained in:
2025-07-02 17:52:04 +02:00
parent f8b8a7466c
commit 45b852752c
4 changed files with 8 additions and 8 deletions

View File

@ -1,8 +1,8 @@
---
import Layout from '@layouts/Layout.astro';
import About from '@components/About.astro';
import AboutComponent from '@components/About.astro';
---
<Layout lang="en">
<About lang="en" />
<AboutComponent lang="en" />
</Layout>