summaryrefslogtreecommitdiff
path: root/examples/starter/src/components/Tour.astro
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-06-08 08:10:56 -0700
committerGravatar GitHub <noreply@github.com> 2021-06-08 11:10:56 -0400
commit6bca7c83a7e2d62015f45f873b0f69f11b4d902b (patch)
tree5662630e51c6e6e743785d308785cff2e47568f0 /examples/starter/src/components/Tour.astro
parent9594447335b7fa15f82c0789f18a3fe02ec20d70 (diff)
downloadastro-6bca7c83a7e2d62015f45f873b0f69f11b4d902b.tar.gz
astro-6bca7c83a7e2d62015f45f873b0f69f11b4d902b.tar.zst
astro-6bca7c83a7e2d62015f45f873b0f69f11b4d902b.zip
redesign create-astro (#301)
* redesign create astro * add changeset * Use npm start * Update the astro version * Adds the changeset Co-authored-by: Fred Schott <fks@Freds-MBP.attlocal.net> Co-authored-by: Matthew Phillips <matthew@skypack.dev>
Diffstat (limited to 'examples/starter/src/components/Tour.astro')
-rw-r--r--examples/starter/src/components/Tour.astro85
1 files changed, 85 insertions, 0 deletions
diff --git a/examples/starter/src/components/Tour.astro b/examples/starter/src/components/Tour.astro
new file mode 100644
index 000000000..5c822fe75
--- /dev/null
+++ b/examples/starter/src/components/Tour.astro
@@ -0,0 +1,85 @@
+---
+import { Markdown } from 'astro/components';
+---
+<article>
+ <div class="banner">
+ <p><strong>🧑‍🚀 Seasoned astronaut?</strong> Delete this file. Have fun!</p>
+ </div>
+
+ <section>
+ <Markdown>
+ ## 🚀 Project Structure
+
+ Inside of your Astro project, you'll see the following folders and files:
+
+ ```
+ /
+ ├── public/
+ │ ├── robots.txt
+ │ └── favicon.ico
+ ├── src/
+ │ ├── components/
+ │ │ └── Tour.astro
+ │ └── pages/
+ │ └── index.astro
+ └── package.json
+ ```
+
+ Astro looks for `.astro` or `.md` files in the `src/pages/` directory.
+ Each page is exposed as a route based on its file name.
+
+ There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
+
+ Any static assets, like images, can be placed in the `public/` directory.
+ </Markdown>
+ </section>
+
+ <section>
+ <h2>👀 Want to learn more?</h2>
+ <p>Feel free to check <a href="https://github.com/snowpackjs/astro">our documentation</a> or jump into our <a href="https://discord.gg/EsGdSGen">Discord server</a>.</p>
+ </section>
+
+</article>
+
+<style>
+ article {
+ padding-top: 2em;
+ line-height: 1.5;
+ }
+ section {
+ margin-top: 2em;
+ display: flex;
+ flex-direction: column;
+ gap: 1em;
+ max-width: 70ch;
+ }
+
+ .banner {
+ text-align: center;
+ font-size: 1.2rem;
+ background: var(--color-light);
+ padding: 1em 1.5em;
+ padding-left: 0.75em;
+ border-radius: 4px;
+ }
+
+ pre,
+ code {
+ font-family: var(--font-mono);
+ background: var(--color-light);
+ border-radius: 4px;
+ }
+
+ pre {
+ padding: 1em 1.5em;
+ }
+
+ .tree {
+ line-height: 1.2;
+ }
+
+ code:not(.tree) {
+ padding: 0.125em;
+ margin: 0 -0.125em;
+ }
+</style>