File tree Expand file tree Collapse file tree 8 files changed +7
-7
lines changed Expand file tree Collapse file tree 8 files changed +7
-7
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
1
---
2
2
import { css } from " styled-system/css" ;
3
3
import { Box , Container } from " styled-system/jsx" ;
4
- import { GridPattern } from " . /mystic/GridPattern" ;
4
+ import { GridPattern } from " ~/components /mystic/GridPattern" ;
5
5
6
6
interface Props {
7
7
class? : string ;
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
---
2
2
import " @fontsource-variable/jetbrains-mono" ;
3
3
import " ./app.css" ;
4
- import Footer from " ~/components/Footer.astro" ;
5
- import Navbar from " ~/components/Navbar" ;
4
+ import Footer from " ~/components/layout/ Footer.astro" ;
5
+ import Navbar from " ~/components/layout/ Navbar" ;
6
6
7
7
interface Props {
8
8
title? : string ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { getCollection } from "astro:content";
3
3
import { getEntry } from " astro:content" ;
4
4
import type { GetStaticPaths } from " astro" ;
5
5
import { css } from " styled-system/css" ;
6
- import MDContainer from " ~/components/MDContainer.astro" ;
6
+ import MDContainer from " ~/components/layout/ MDContainer.astro" ;
7
7
import { getPostHTML } from " ~/content/blog/client" ;
8
8
import BaseLayout from " ~/layouts/BaseLayout.astro" ;
9
9
import TablerExternalLink from " ~icons/tabler/external-link" ;
Original file line number Diff line number Diff line change 1
1
---
2
2
import { getCollection } from " astro:content" ;
3
- import MDContainer from " ~/components/MDContainer.astro" ;
3
+ import MDContainer from " ~/components/layout/ MDContainer.astro" ;
4
4
import BaseLayout from " ~/layouts/BaseLayout.astro" ;
5
5
const posts = await getCollection (" blog" );
6
6
---
Original file line number Diff line number Diff line change 1
1
---
2
2
import { getEntry , render } from " astro:content" ;
3
- import MDContainer from " src/components/MDContainer.astro" ;
4
3
import { Center , Stack } from " styled-system/jsx" ;
4
+ import MDContainer from " ~/components/layout/MDContainer.astro" ;
5
5
import BaseLayout from " ~/layouts/BaseLayout.astro" ;
6
6
const entry = await getEntry (" pages" , " index" );
7
7
Original file line number Diff line number Diff line change 2
2
import { type CollectionEntry , getCollection } from " astro:content" ;
3
3
import type { GetStaticPaths , Page } from " astro" ;
4
4
import { css } from " styled-system/css" ;
5
- import MDContainer from " ~/components/MDContainer.astro" ;
6
5
import ProjectCard from " ~/components/ProjectCard.astro" ;
7
6
import { ProjectPagination } from " ~/components/ProjectPagination" ;
7
+ import MDContainer from " ~/components/layout/MDContainer.astro" ;
8
8
import BaseLayout from " ~/layouts/BaseLayout.astro" ;
9
9
10
10
export const getStaticPaths = (async ({ paginate }) => {
You can’t perform that action at this time.
0 commit comments