diff --git a/public/assets/partners/eas.svg b/public/assets/partners/eas.svg new file mode 100644 index 0000000..0123a05 --- /dev/null +++ b/public/assets/partners/eas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/partners/eyl_logo.png b/public/assets/partners/eyl_logo.png new file mode 100644 index 0000000..9da3344 Binary files /dev/null and b/public/assets/partners/eyl_logo.png differ diff --git a/public/assets/partners/hextech_logo.svg b/public/assets/partners/hextech_logo.svg new file mode 100644 index 0000000..758577f --- /dev/null +++ b/public/assets/partners/hextech_logo.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + diff --git a/public/assets/partners/partners.json b/public/assets/partners/partners.json new file mode 100644 index 0000000..725c6fb --- /dev/null +++ b/public/assets/partners/partners.json @@ -0,0 +1,37 @@ +[ + { + "name": "Tehnopol", + "image": "tehnopollogo.png", + "url": "https://www.tehnopol.ee/" + }, + { + "name": "Tallinna Tehnikaülikool", + "image": "taltech_logo.jpg", + "url": "https://www.ttu.ee/" + }, + { + "name": "Eesti Üliõpilaskondade Liit", + "image": "eyl_logo.png", + "url": "https://eyl.ee/" + }, + { + "name": "Tallinna Tehnikaülikooli Robotiklubi", + "image": "robotiklubi_logo.png", + "url": "https://www.robotiklubi.ee/" + }, + { + "name": "Tallinna Tehnikaülikooli Infotehnoloogia teaduskond", + "image": "taltech_IT_teaduskond_logo.png", + "url": "https://taltech.ee/et/infotehnoloogia-teaduskond" + }, + { + "name": "HexTech Solutions", + "image": "hextech_logo.svg", + "url": "https://hextech.ee/" + }, + { + "name": "EAS & MKM", + "image": "eas.svg", + "url": "https://eis.ee/" + } +] diff --git a/public/assets/partners/robotiklubi_logo.png b/public/assets/partners/robotiklubi_logo.png new file mode 100644 index 0000000..556df44 Binary files /dev/null and b/public/assets/partners/robotiklubi_logo.png differ diff --git a/public/assets/partners/skeemipesa_logo.png b/public/assets/partners/skeemipesa_logo.png new file mode 100644 index 0000000..016c054 Binary files /dev/null and b/public/assets/partners/skeemipesa_logo.png differ diff --git a/public/assets/partners/taltech_IT_teaduskond_logo.png b/public/assets/partners/taltech_IT_teaduskond_logo.png new file mode 100644 index 0000000..fb58704 Binary files /dev/null and b/public/assets/partners/taltech_IT_teaduskond_logo.png differ diff --git a/public/assets/partners/taltech_logo.jpg b/public/assets/partners/taltech_logo.jpg new file mode 100644 index 0000000..ba56bcd Binary files /dev/null and b/public/assets/partners/taltech_logo.jpg differ diff --git a/public/assets/partners/tehnopollogo.png b/public/assets/partners/tehnopollogo.png new file mode 100644 index 0000000..e6cfc44 Binary files /dev/null and b/public/assets/partners/tehnopollogo.png differ diff --git a/public/assets/partners/tty_logo_2.png b/public/assets/partners/tty_logo_2.png new file mode 100644 index 0000000..2d86462 Binary files /dev/null and b/public/assets/partners/tty_logo_2.png differ diff --git a/public/assets/partners/yli6pilasesindus_logo.png b/public/assets/partners/yli6pilasesindus_logo.png new file mode 100644 index 0000000..af61d0e Binary files /dev/null and b/public/assets/partners/yli6pilasesindus_logo.png differ diff --git a/src/app.css b/src/app.css index 05e01c2..7600bd8 100644 --- a/src/app.css +++ b/src/app.css @@ -102,8 +102,7 @@ body { .container { width: 100%; max-width: var(--content-max); - margin-left: auto; - margin-right: auto; + padding-left: var(--site-padding); padding-right: var(--site-padding); } diff --git a/src/components/layout/Container.svelte b/src/components/layout/Container.svelte index 98c2623..8c6e8bb 100644 --- a/src/components/layout/Container.svelte +++ b/src/components/layout/Container.svelte @@ -6,10 +6,10 @@ projected via the default slot. --> -
+
diff --git a/src/layout/Footer.svelte b/src/layout/Footer.svelte index e69de29..5f45e84 100644 --- a/src/layout/Footer.svelte +++ b/src/layout/Footer.svelte @@ -0,0 +1,31 @@ + + +
+

MTÜ Lapikud

+ + +
+ Aadress: Akadeemia tee 5, 12616 Tallinn, Eesti +
+ E-post: lapikud@lapikud.ee +
+ Tel: +372 58 160 799 +
+ Messenger: m.me/Lapikud +
+

+ +

+
+ +
+
© 2026 MTÜ Lapikud
+
\ No newline at end of file diff --git a/src/routes/Home.svelte b/src/routes/Home.svelte index 1adcf03..e067756 100644 --- a/src/routes/Home.svelte +++ b/src/routes/Home.svelte @@ -8,6 +8,7 @@ FeatureCard, } from "$components"; import { navigate } from "$lib"; + import { onMount } from "svelte"; // Import Lucide icons import Wrench from "lucide-svelte/icons/wrench"; @@ -16,15 +17,12 @@ import ArrowRight from "lucide-svelte/icons/arrow-right"; // Partners data - const partners = [ - { name: "Tehnopol", image: "tehnopollogo.png", url: "https://www.tehnopol.ee/" }, - { name: "Tallinna Tehnikaülikool", image: "taltech_logo.jpg", url: "https://www.ttu.ee/" }, - { name: "Eesti Üliõpilaskondade Liit", image: "eyl_logo.png", url: "https://eyl.ee/" }, - { name: "Tallinna Tehnikaülikooli Robotiklubi", image: "robotiklubi_logo.png", url: "https://www.robotiklubi.ee/" }, - { name: "TalTech IT teaduskond", image: "taltech_IT_teaduskond_logo.png", url: "https://taltech.ee/et/infotehnoloogia-teaduskond" }, - { name: "HexTech Solutions", image: "hextech_logo.svg", url: "https://hextech.ee/" }, - { name: "EAS & MKM", image: "eas.svg", url: "https://eis.ee/" }, - ]; + let partners = []; + + onMount(async () => { + const response = await fetch('/assets/partners/partners.json'); + partners = await response.json(); + }); @@ -134,9 +132,6 @@ align-items: center; justify-content: center; padding: var(--space-3); - border-radius: var(--radius-md); - background: var(--white); - border: 1px solid var(--gray-200); transition: all 0.3s ease; text-decoration: none; width: 100%; @@ -145,63 +140,18 @@ a.partner-item:hover { transform: scale(1.05); - box-shadow: var(--shadow-2); - border-color: var(--orange); } .partner-item img { max-width: 100%; max-height: 60px; object-fit: contain; - filter: grayscale(100%); - opacity: 0.7; transition: all 0.3s ease; } - a.partner-item:hover img { - filter: grayscale(0%); - opacity: 1; - } - .partner-name { font-size: var(--fs-sm); font-weight: 600; - color: var(--gray-800); text-align: center; } - - -
-
-

- EIS Projekt -

-

- MTÜ Lapikud projekti "Mobiilne Droonituvastussüsteem" rahastatakse riigieelarvest - teadus- ja arendustegevuse rahastamise vahenditest 100 000 € ulatuses, eesmärgiga - luua füüsilised droonituvastusseadmed, mis tagavad kasutajale droonialase olukorra teadlikkuse. -

-

- Projekti lõpptulemusena valmib kaks teineteisest eraldiseisvat seadet – - spektrianalüüsi ning Direct Remote Identification tööpõhimõttel toimivad seadmed. -

-
-
- - -
-
-

- Valmis liituma? -

-
- - -
-
-