Make about page

This commit is contained in:
Amber M
2024-04-28 13:59:31 +01:00
parent 062eff0433
commit 9e21f8edbf
+36 -24
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> <p id="about-us-features">Features</p>
This is a <a href="https://kit.svelte.dev">SvelteKit</a> app. You can make your own by typing the <p id="helpful-info">Helpful Information</p>
following into your command line and following the prompts:
</p>
<pre>npm create svelte@latest</pre>
<p>
The page you're looking at is purely static HTML, with no client-side interactivity needed.
Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening
the devtools network panel and reloading.
</p>
</div> </div>
<style> <div id="team-information">
.content { Include a section introducing the development team behind the application, highlighting key
width: 100%; members and their roles.
max-width: var(--column-width); <ul>
margin: var(--column-margin-top) auto 0 auto; <li id="tm-name-one">Team Member Name</li>
}
</style> <li id="tm-name-two">Team Member Name</li>
</ul>
</div>
<div id="project-details">
Share insights into the development process, challenges faced, and any interesting anecdotes or
milestones achieved during the project's journey.
</div>
<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>