mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
refactor, fix: move some widgets to widgets/index
This commit is contained in:
parent
1f1608336d
commit
04e44fadc5
5 changed files with 7 additions and 7 deletions
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
import Socials from "../widgets/Socials.astro";
|
||||
import Socials from "./Socials.astro";
|
||||
import { Image } from "@astrojs/image/components";
|
||||
import logo from "../../assets/logo.png";
|
||||
import Name from "../widgets/Name.astro";
|
||||
import logo from "../../../assets/logo.png";
|
||||
import Name from "./Name.astro";
|
||||
---
|
||||
|
||||
<main
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
import Container from "../components/atoms/Container.astro";
|
||||
import Navbar from "../components/widgets/Navbar.astro";
|
||||
import Layout from "./Layout.astro"
|
||||
import Container from "../../components/atoms/Container.astro";
|
||||
import Navbar from "../../components/widgets/Navbar.astro";
|
||||
import Layout from "../Layout.astro"
|
||||
|
||||
export interface Props {
|
||||
content: {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
import Layout from "../layouts/Layout.astro";
|
||||
import Hero from "../components/widgets/Hero.astro";
|
||||
import Hero from "../components/widgets/index/Hero.astro";
|
||||
import Navbar from "../components/widgets/Navbar.astro";
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in a new issue