Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(components): cleanup structure

the3ash 57749945 645a43ef

+5 -5
src/components/features/FootnoteScroll.astro src/components/widgets/FootnoteScroll.astro
src/components/features/FormattedDate.astro src/components/widgets/FormattedDate.astro
+1 -1
src/components/features/PostList.astro src/components/widgets/PostList.astro
··· 1 1 --- 2 - import FormattedDate from '@/components/features/FormattedDate.astro' 2 + import FormattedDate from '@/components/widgets/FormattedDate.astro' 3 3 import type { PostListProps } from '@/types' 4 4 import { themeConfig } from '@/config' 5 5
src/components/pages/About.astro src/components/widgets/About.astro
+2 -2
src/layouts/PostLayout.astro
··· 1 1 --- 2 2 import '@/styles/global.css' 3 3 import type { PostLayoutProps } from '@/types' 4 - import FormattedDate from '@/components/features/FormattedDate.astro' 5 - import FootnoteScroll from '@/components/features/FootnoteScroll.astro' 4 + import FormattedDate from '@/components/widgets/FormattedDate.astro' 5 + import FootnoteScroll from '@/components/widgets/FootnoteScroll.astro' 6 6 import BaseHead from '@/components/layout/BaseHead.astro' 7 7 import Footer from '@/components/layout/Footer.astro' 8 8 import BackButton from '@/components/ui/BackButton.astro'
+2 -2
src/pages/index.astro
··· 1 1 --- 2 2 import IndexLayout from '@/layouts/IndexLayout.astro' 3 - import About from '@/components/pages/About.astro' 4 - import PostList from '@/components/features/PostList.astro' 3 + import About from '@/components/widgets/About.astro' 4 + import PostList from '@/components/widgets/PostList.astro' 5 5 import { themeConfig } from '@/config' 6 6 import { getSortedFilteredPosts } from '@/utils/draft' 7 7