diff --git a/README.md b/README.md index f87b466772..739fb06079 100644 --- a/README.md +++ b/README.md @@ -69,13 +69,14 @@ Inside AstroWind template, you'll see the following folders and files: ``` / ├── public/ -│ ├── robots.txt -│ └── favicon.ico +│ ├── _headers +│ └── robots.txt ├── src/ │ ├── assets/ +│ │ ├── favicons/ │ │ ├── images/ │ │ └── styles/ -│ │ └── base.css +│ │ └── tailwind.css │ ├── components/ │ │ ├── blog/ │ │ ├── common/ @@ -83,6 +84,7 @@ Inside AstroWind template, you'll see the following folders and files: │ │ │ ├── Header.astro │ │ │ └── ... │ │ ├── CustomStyles.astro +│ │ ├── Favicons.astro │ │ └── Logo.astro │ ├── content/ │ │ ├── post/ @@ -92,7 +94,8 @@ Inside AstroWind template, you'll see the following folders and files: │ │ └-- config.ts │ ├── layouts/ │ │ ├── BaseLayout.astro -│ │ └── ... +│ │ ├── MarkdownLayout.astro +│ │ └── PageLayout.astro │ ├── pages/ │ │ ├── [...blog]/ │ │ │ ├── [category]/ diff --git a/src/layouts/PageLayout.astro b/src/layouts/PageLayout.astro index 8a9a40bfd8..51b4e26dc6 100644 --- a/src/layouts/PageLayout.astro +++ b/src/layouts/PageLayout.astro @@ -4,7 +4,7 @@ import Header from '~/components/widgets/Header.astro'; import Footer from '~/components/widgets/Footer.astro'; import Announcement from '~/components/widgets/Announcement.astro'; -import { headerData, footerData } from '~/data'; +import { headerData, footerData } from '~/navigation'; import { MetaSEO } from '~/types'; diff --git a/src/data.js b/src/navigation.js similarity index 98% rename from src/data.js rename to src/navigation.js index a6ea165d92..051df204b7 100644 --- a/src/data.js +++ b/src/navigation.js @@ -64,7 +64,7 @@ export const headerData = { href: getPermalink("get-started-website-with-astro-tailwind-css", "post"), }, { - text: "Article (with Widgets)", + text: "Article (with MDX)", href: getPermalink("markdown-elements-demo-post", "post"), }, { diff --git a/src/pages/landing/saas.astro b/src/pages/landing/saas.astro index 83525e89d8..adadca5731 100644 --- a/src/pages/landing/saas.astro +++ b/src/pages/landing/saas.astro @@ -7,7 +7,7 @@ import Steps2 from '~/components/widgets/Steps2.astro'; import Content from '~/components/widgets/Content.astro'; import CallToAction from '~/components/widgets/CallToAction.astro'; -import { headerData } from '~/data'; +import { headerData } from '~/navigation'; const meta = { title: 'Saas Landing Page', diff --git a/src/pages/landing/startup.astro b/src/pages/landing/startup.astro index b086aa6a64..85ff043728 100644 --- a/src/pages/landing/startup.astro +++ b/src/pages/landing/startup.astro @@ -5,7 +5,7 @@ import Header from '~/components/widgets/Header.astro'; import Hero from '~/components/widgets/Hero.astro'; import CallToAction from '~/components/widgets/CallToAction.astro'; -import { headerData } from '~/data'; +import { headerData } from '~/navigation'; const meta = { title: "Startup Landing Page",