summaryrefslogtreecommitdiff
path: root/examples/starter/src/components/Tour.astro
blob: 9a9ebe17f2540e52f62101e1fdda5c9b8c83b6c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
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/
			│   └── 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/withastro/astro">our documentation</a> or jump into our <a href="https://astro.build/chat">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>