Make about page

This commit is contained in:
Amber M
2024-04-28 13:59:31 +01:00
parent 062eff0433
commit 9e21f8edbf
+33 -21
View File
@@ -1,30 +1,42 @@
<svelte:head> <svelte:head>
<title>About</title> <title>About Us</title>
<meta name="description" content="About this app" /> <meta name="description" content="About this app" />
</svelte:head> </svelte:head>
<div class="content"> <div class="h-screen">
<h1>About this app</h1> <div id="introduction">
<p id="about-us">About Us</p>
<p id="about-us-features">Features</p>
<p id="helpful-info">Helpful Information</p>
</div>
<p> <div id="team-information">
This is a <a href="https://kit.svelte.dev">SvelteKit</a> app. You can make your own by typing the Include a section introducing the development team behind the application, highlighting key
following into your command line and following the prompts: members and their roles.
</p> <ul>
<li id="tm-name-one">Team Member Name</li>
<pre>npm create svelte@latest</pre> <li id="tm-name-two">Team Member Name</li>
</ul>
</div>
<p> <div id="project-details">
The page you're looking at is purely static HTML, with no client-side interactivity needed. Share insights into the development process, challenges faced, and any interesting anecdotes or
Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening milestones achieved during the project's journey.
the devtools network panel and reloading. </div>
</p>
<div id="contact-information">
Offer ways for users to get in touch with the development team, such as through social media, or
a contact form.
</div>
<div id="acknowledgements">
Express gratitude to any individuals or organisations that have contributed to the project's
success, including sponsors, supporters, or open-source contributors.
</div>
<div id="legal-information">
Provide necessary legal disclaimers, privacy policies, or terms of service to ensure compliance
with relevant regulations and protect user rights.
</div>
</div> </div>
<style>
.content {
width: 100%;
max-width: var(--column-width);
margin: var(--column-margin-top) auto 0 auto;
}
</style>