···11---
22-import FormattedDate from '@/components/features/FormattedDate.astro'
22+import FormattedDate from '@/components/widgets/FormattedDate.astro'
33import type { PostListProps } from '@/types'
44import { themeConfig } from '@/config'
55
···11---
22import '@/styles/global.css'
33import type { PostLayoutProps } from '@/types'
44-import FormattedDate from '@/components/features/FormattedDate.astro'
55-import FootnoteScroll from '@/components/features/FootnoteScroll.astro'
44+import FormattedDate from '@/components/widgets/FormattedDate.astro'
55+import FootnoteScroll from '@/components/widgets/FootnoteScroll.astro'
66import BaseHead from '@/components/layout/BaseHead.astro'
77import Footer from '@/components/layout/Footer.astro'
88import BackButton from '@/components/ui/BackButton.astro'
+2-2
src/pages/index.astro
···11---
22import IndexLayout from '@/layouts/IndexLayout.astro'
33-import About from '@/components/pages/About.astro'
44-import PostList from '@/components/features/PostList.astro'
33+import About from '@/components/widgets/About.astro'
44+import PostList from '@/components/widgets/PostList.astro'
55import { themeConfig } from '@/config'
66import { getSortedFilteredPosts } from '@/utils/draft'
77