Skip to content

Commit 3347329

Browse files
committed
Fix indentation
1 parent b3b05a1 commit 3347329

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

src/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ onDestroy(router.unlisten)
2828
<Header />
2929

3030
<main>
31-
<svelte:component this={component} {...props} />
31+
<svelte:component this={component} {...props} />
3232
</main>

src/pages/About.svelte

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,13 @@ import { fade } from 'svelte/transition'
44

55
<div class="page" transition:fade>
66
<div class="container py-12 px-4">
7-
87
<h1 class="text-red-500 text-3xl mb-8">What is Lorem Ipsum?</h1>
98
<p class="mb-12">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
10-
119
<h1 class="text-red-500 text-3xl mb-8">Where does it come from?</h1>
1210
<p class="mb-12">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>
13-
1411
<h1 class="text-red-500 text-3xl mb-8">Why do we use it?</h1>
1512
<p class="mb-12">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
16-
1713
<h1 class="text-red-500 text-3xl mb-8">Where can I get some?</h1>
1814
<p class="mb-12">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
19-
2015
</div>
2116
</div>

src/pages/Home.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ import { fade } from 'svelte/transition'
44

55
<div class="page" transition:fade>
66
<h1 class="text-red-500 text-6xl text-center font-thin my-8">HELLO WORLD!</h1>
7-
<p class="text-center mx-4">Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p>
7+
<p class="text-center mx-4">Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p>
88
</div>

src/pages/NotFound.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ import { fade } from 'svelte/transition'
44

55
<div class="page" transition:fade>
66
<h1 class="text-red-500 text-6xl text-center font-thin my-8">404</h1>
7-
<p class="text-center mx-4">Uh oh. Page is not found.</p>
7+
<p class="text-center mx-4">Uh oh. Page is not found.</p>
88
</div>

0 commit comments

Comments
 (0)