summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/templates/index.html b/templates/index.html
index 87145fd..396c663 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -27,17 +27,21 @@
<title>Document</title>
</head>
<body
- class="w-screen flex flex-col gap-4 items-center bg-stone-50 source-code-pro-500"
+ class="w-screen overflow-x-hidden flex flex-col gap-4 items-center bg-stone-50 source-code-pro-500 p-2"
>
- {% include 'partials/palette.html' %}
-
{% include 'partials/header.html' %}
- {% include 'partials/about.html' %}
-
- {% include 'partials/avatars.html' %}
+ <div class="flex flex-wrap w-full md:w-3/4 justify-around gap-4">
+ <div class="w-full md:w-1/3">
+ {% include 'partials/about.html' %}
+ {% include 'partials/palette.html' %}
+ {% include 'partials/services.html' %}
+ </div>
+ <div class="w-full md:w-1/3">
+ {% include 'partials/avatars.html' %}
+ </div>
+ </div>
- {% include 'partials/services.html' %}
</body>
</html>