|
1 | 1 | <template>
|
2 |
| - <div class="flex min-h-screen w-full flex-col items-center justify-start bg-gray-50 transition-all duration-300 sm:min-h-screen sm:justify-center sm:bg-opacity-70 sm:bg-[url('/background-blue.jpg')] sm:bg-cover sm:bg-center"> |
| 2 | + <div class="flex min-h-screen w-full flex-col items-center justify-between bg-gray-50 transition-all duration-300 sm:justify-center sm:bg-opacity-70 sm:bg-[url('/background-blue.jpg')] sm:bg-cover sm:bg-center"> |
3 | 3 | <!-- Mobile only heading -->
|
4 |
| - <div class="mt-12 block bg-gray-50 p-2 text-left sm:hidden"> |
| 4 | + <div class="mt-4 flex flex-col justify-center bg-gray-50 p-2 text-left sm:hidden"> |
5 | 5 | <h2 data-aos="zoom-in" class="mb-4 text-7xl font-bold text-fipu_gray">Dobrodošli na</h2>
|
6 | 6 | <h1 data-aos="zoom-in" data-aos-delay="500" class="text-6xl font-bold text-fipu_blue">FIPU Praksu</h1>
|
7 | 7 | </div>
|
8 | 8 |
|
9 |
| - <div class="mt-8 flex w-full flex-1 flex-col items-center justify-center transition-all duration-300 sm:mt-0 sm:flex-none"> |
10 |
| - <CardBox vertical-centered class="mx-0 flex h-full w-full flex-1 flex-col px-0 pb-8 pt-8 transition-all duration-300 sm:mx-6 sm:h-auto sm:w-auto sm:flex-none sm:rounded-2xl sm:p-10 md:px-12 lg:mx-60 lg:p-12" is-form> |
11 |
| - <div class="flex flex-1 flex-col justify-between"> |
12 |
| - <div> |
13 |
| - <!-- Logo, shown only on larger screens --> |
14 |
| - <a href="https://fipu.unipu.hr/" target="_blank" class="mx-auto hidden w-max sm:block"> |
15 |
| - <img :src="fipu_unipu" alt="Fakultet informatike u Puli - logotip" class="mb-4 h-24 object-contain transition-all duration-300 sm:h-28 lg:h-32" /> |
16 |
| - </a> |
17 |
| - |
18 |
| - <!-- Hide heading on mobile --> |
19 |
| - <div data-aos="zoom-in" data-aos-delay="200" class="hidden sm:block"> |
20 |
| - <h2 class="mb-4 mt-4 text-center text-2xl font-bold text-fipu_gray sm:text-2xl lg:text-4xl">Dobrodošli na <span class="text-fipu_blue">FIPU Praksu</span></h2> |
21 |
| - </div> |
22 |
| - <!-- Content paragraphs --> |
23 |
| - <p class="mx-auto mb-8 max-w-md p-2 text-left text-base text-gray-600 sm:mb-5 sm:max-w-2xl sm:p-0 sm:text-center sm:text-base lg:text-lg"> |
24 |
| - Molimo prijavite se kako biste pregledali stanje vaše prakse ili prijavili zadatke. Ako želite samo pregledati dostupne zadatke i poduzeća, možete nastaviti kao |
25 |
| - <a class="hover-underline-animation cursor-pointer text-fipu_text_blue hover:text-fipu_blue" @click="router.push('/moja-praksa')"> gost. </a> |
26 |
| - </p> |
27 |
| - |
28 |
| - <div class="my-6 flex w-full justify-center sm:my-6"> |
29 |
| - <GoogleLogin :callback="callback" /> |
30 |
| - </div> |
31 |
| - |
32 |
| - <p class="mb-0 p-2 text-left text-base text-gray-600 sm:mb-3 sm:p-0 sm:text-center sm:text-base lg:text-lg"> |
33 |
| - Poslodavac ste ili mentor te želite prijaviti novi zadatak za praksu? To možete učiniti |
34 |
| - <a class="hover-underline-animation cursor-pointer text-fipu_text_blue hover:text-fipu_blue" @click="router.push('/poslodavci/novi-zadatak')"> ovdje. </a> |
35 |
| - </p> |
36 |
| - |
37 |
| - <p class="mb-4 p-2 text-left text-base text-gray-600 sm:mb-0 sm:p-0 sm:text-center sm:text-base lg:text-lg"> |
38 |
| - Prije nego se prijavite, pročitajte |
39 |
| - <a class="hover-underline-animation cursor-pointer text-fipu_text_blue hover:text-fipu_blue" @click="router.push('/upute')"> upute </a> |
40 |
| - kako izvodimo praksu na FIPU. |
41 |
| - </p> |
| 9 | + <!-- Main content area --> |
| 10 | + <div class="flex w-full flex-1 flex-col items-center justify-center transition-all duration-300 sm:flex-none"> |
| 11 | + <CardBox vertical-centered class="mx-0 flex w-full flex-col px-0 transition-all duration-300 sm:mx-6 sm:w-auto sm:flex-none sm:rounded-2xl sm:p-10 sm:pt-8 md:px-12 lg:mx-60 lg:p-12" is-form> |
| 12 | + <!-- Content area --> |
| 13 | + <div class="flex flex-grow flex-col items-center"> |
| 14 | + <!-- Logo, shown only on larger screens --> |
| 15 | + <a href="https://fipu.unipu.hr/" target="_blank" class="mx-auto hidden w-max sm:block"> |
| 16 | + <img :src="fipu_unipu" alt="Fakultet informatike u Puli - logotip" class="mb-4 h-24 object-contain transition-all duration-300 lg:h-24" /> |
| 17 | + </a> |
| 18 | + <hr class="hidden w-full sm:block" /> |
| 19 | + <!-- Hide heading on mobile --> |
| 20 | + <div data-aos="zoom-in" data-aos-delay="200" class="hidden sm:block"> |
| 21 | + <h2 class="mb-4 mt-4 text-center text-2xl font-bold text-fipu_gray lg:text-4xl">Dobrodošli na <span class="text-fipu_blue">FIPU Praksu</span></h2> |
42 | 22 | </div>
|
43 |
| - <!-- Logo at the bottom, centered on mobile --> |
44 |
| - <div class="flex justify-center sm:hidden"> |
45 |
| - <a href="https://fipu.unipu.hr/" target="_blank" class="w-max"> |
46 |
| - <img :src="fipu_unipu" alt="Fakultet informatike u Puli - logotip" class="h-15 object-contain p-2" /> |
47 |
| - </a> |
| 23 | + <!-- Content paragraphs --> |
| 24 | + <p class="mx-auto mb-4 max-w-md p-2 py-8 text-left text-lg text-gray-600 sm:mb-5 sm:max-w-2xl sm:p-0 sm:text-center lg:text-lg"> |
| 25 | + Molimo prijavite se kako biste pregledali stanje vaše prakse ili prijavili zadatke. Ako želite samo pregledati dostupne zadatke i poduzeća, možete nastaviti kao |
| 26 | + <a class="hover-underline-animation cursor-pointer text-fipu_text_blue hover:text-fipu_blue" @click="router.push('/moja-praksa')"> gost. </a> |
| 27 | + </p> |
| 28 | + |
| 29 | + <div class="my-4 flex w-full justify-center sm:my-6"> |
| 30 | + <GoogleLogin :callback="callback" /> |
48 | 31 | </div>
|
| 32 | + |
| 33 | + <p class="mb-0 p-2 text-left text-lg text-gray-600 sm:mb-3 sm:p-0 sm:text-center lg:text-lg"> |
| 34 | + Poslodavac ste ili mentor te želite prijaviti novi zadatak za praksu? To možete učiniti |
| 35 | + <a class="hover-underline-animation cursor-pointer text-fipu_text_blue hover:text-fipu_blue" @click="router.push('/poslodavci/novi-zadatak')"> ovdje. </a> |
| 36 | + </p> |
| 37 | + |
| 38 | + <p class="mb-0 p-2 text-left text-lg text-gray-600 sm:mb-0 sm:p-0 sm:text-center lg:text-lg"> |
| 39 | + Prije nego se prijavite, pročitajte |
| 40 | + <a class="hover-underline-animation cursor-pointer text-fipu_text_blue hover:text-fipu_blue" @click="router.push('/upute')"> upute </a> |
| 41 | + kako izvodimo praksu na FIPU. |
| 42 | + </p> |
49 | 43 | </div>
|
50 | 44 | </CardBox>
|
51 | 45 | </div>
|
| 46 | + <hr class="block w-full sm:hidden" /> |
| 47 | + |
| 48 | + <!-- Logo at the bottom, centered on mobile --> |
| 49 | + <div class="flex justify-center sm:hidden"> |
| 50 | + <a href="https://fipu.unipu.hr/" target="_blank" class="w-max"> |
| 51 | + <img :src="fipu_unipu" alt="Fakultet informatike u Puli - logotip" class="h-24 object-contain p-2" /> |
| 52 | + </a> |
| 53 | + </div> |
| 54 | + |
52 | 55 | <SnackBar />
|
53 | 56 | </div>
|
54 | 57 | </template>
|
|
0 commit comments