Changed core to templates

This commit is contained in:
Patrick Alvin Alcala 2025-08-27 18:58:07 +08:00
parent 5a86aac37d
commit 2d9d7aa41c
3 changed files with 8 additions and 8 deletions

View file

@ -4,7 +4,7 @@ const { title } = Astro.props
const websiteName = 'Template' const websiteName = 'Template'
const websiteDescription = 'This is just a template.' const websiteDescription = 'This is just a template.'
import Background from '../core/Background/Background' import Background from '../templates/Background/Background'
--- ---
<html lang="en"> <html lang="en">

View file

@ -1,10 +1,10 @@
--- ---
import Layout from '../layouts/Layout.astro' import Layout from '../layouts/Layout.astro'
import Button from '../core/Button/Button.tsx' import Button from '../templates/Button/Button.tsx'
import Image from '../core/Image/Image' import Image from '../templates/Image/Image'
import Link from '../core/Link/Link' import Link from '../templates/Link/Link'
import Counter from '../components/Counter/Counter.tsx' import Counter from '../components/Counter/Counter.tsx'
import Page from '../core/Page/Page' import Page from '../templates/Page/Page'
--- ---
<Layout title="FWT"> <Layout title="FWT">

View file

@ -1,8 +1,8 @@
--- ---
import Layout from '../layouts/Layout.astro' import Layout from '../layouts/Layout.astro'
import Button from '../core/Button/Button.tsx' import Button from '../templates/Button/Button.tsx'
import Image from '../core/Image/Image' import Image from '../templates/Image/Image'
import Page from '../core/Page/Page' import Page from '../templates/Page/Page'
--- ---
<Layout title="Home"> <Layout title="Home">