Merge pull request #34 from jcreek/29-create-an-about-page

Make about page
This commit is contained in:
Josh Creek
2024-04-28 14:07:29 +01:00
committed by GitHub
+32 -21
View File
@@ -1,30 +1,41 @@
<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>Team Member Name</li>
<li>Team Member Name</li>
</ul>
</div>
<pre>npm create svelte@latest</pre> <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>
<p> <div id="contact-information">
The page you're looking at is purely static HTML, with no client-side interactivity needed. Offer ways for users to get in touch with the development team, such as through social media, or
Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening a contact form.
the devtools network panel and reloading. </div>
</p>
<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>