Skip to content

Commit 02f68a9

Browse files
committed
Reorganize files
1 parent 1c9516f commit 02f68a9

15 files changed

Lines changed: 23 additions & 23 deletions

File tree

src/components/about/hero.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import Picture from "@components/ui/picture.astro";
2+
import Picture from "@components/picture.astro";
33
44
import avatarPng from "@assets/avatar.png";
55
---
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
modeTitleId,
1515
navId,
1616
navListId
17-
} from "@layout/body/header.ids.ts";
17+
} from "@components/page/header.ids";
1818
---
1919

2020
<header id={headerId} class="header no-decor">
@@ -104,7 +104,7 @@ import {
104104
modeTitleId,
105105
navId,
106106
navListId
107-
} from "@layout/body/header.ids.ts";
107+
} from "@components/page/header.ids";
108108
import { colors } from "@styles/data/colors.json";
109109

110110
const header = document.getElementById(headerId) as HTMLElement;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import Time from "@components/ui/time.astro";
2+
import Time from "@components/time.astro";
33
44
type Props = {
55
title: string;

src/components/projects/item-card.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
import type { ImageMetadata } from "astro";
33
4-
import Picture from "@components/ui/picture.astro";
4+
import Picture from "@components/picture.astro";
55
66
type Props = {
77
image: ImageMetadata & { alt: string };
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
import "@styles/global.scss";
2+
import "@styles/page.scss";
33
4-
import Footer from "@layout/body/footer.astro";
5-
import Header from "@layout/body/header.astro";
6-
import Fonts from "@layout/head/fonts.astro";
4+
import Fonts from "@components/page/fonts.astro";
5+
import Footer from "@components/page/footer.astro";
6+
import Header from "@components/page/header.astro";
77
88
type Props = { title: string };
99
const { title } = Astro.props;

0 commit comments

Comments
 (0)