summaryrefslogtreecommitdiff
path: root/src/routes/+page.svelte
diff options
context:
space:
mode:
authortoufic ar <contact@toufy.me>2026-07-07 18:29:43 +0300
committertoufic ar <contact@toufy.me>2026-07-07 18:29:43 +0300
commitf7da804e40b990e5f1ee2214a2e2e4984d704f16 (patch)
treeafec975241b8feaf40c72c924217a6a724461c51 /src/routes/+page.svelte
downloadwebsite-f7da804e40b990e5f1ee2214a2e2e4984d704f16.tar.gz
website-f7da804e40b990e5f1ee2214a2e2e4984d704f16.zip
initial commit
Diffstat (limited to 'src/routes/+page.svelte')
-rw-r--r--src/routes/+page.svelte24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
new file mode 100644
index 0000000..f4dc65f
--- /dev/null
+++ b/src/routes/+page.svelte
@@ -0,0 +1,24 @@
+<script>
+ import Attributions from "$lib/components/Attributions.svelte";
+ import Socials from "$lib/components/Socials.svelte";
+ import Header from "$lib/components/Header.svelte";
+ import Keys from "$lib/components/Keys.svelte";
+ import Services from "$lib/components/Services.svelte";
+</script>
+
+<div class="flex flex-col w-full place-content-center place-items-center">
+ <div
+ class="flex flex-col place-content-center place-items-center
+ w-[90%] my-5"
+ >
+ <Header />
+ <div class="divider"></div>
+ <Services />
+ <div class="divider"></div>
+ <Keys />
+ <div class="divider"></div>
+ <Socials />
+ <div class="divider"></div>
+ <Attributions />
+ </div>
+</div>