This commit is contained in:
a-ill
2023-06-24 00:39:41 +03:00
parent 9e8ee05bb6
commit 6cfb2bada8
35 changed files with 1183 additions and 74 deletions

View File

@@ -2,7 +2,7 @@
<script>
// Import statements
i
import { onMount } from 'svelte'
// Import components
@@ -15,12 +15,26 @@
})
</script>
<!--HTML GOES HERE-->
<p>I AM A TEXT FOR TESTING</p>
<!--
<div id="who-we-are">
<p>WHO WE ARE GOES HERE</p>
</div>
-->
<style>
@import '/css/common.css';
#who-we-are {
margin: auto;
background-color: rgb(194, 194, 194);
max-width: 1200px;
height: 10rem;
}
#who-we-are p {
font-size: 1.2rem;
text-align: center;
}
</style>