Bladeren bron

Merge branch 'feature/IGAL-JOY-configurar-estilos-e-pagina' of joycekepler/sfp_front_nuxt_iguassu_alliance into development

joycekepler 4 dagen geleden
bovenliggende
commit
a6b867dc42
3 gewijzigde bestanden met toevoegingen van 16 en 8 verwijderingen
  1. 8 6
      app/assets/main.css
  2. 7 1
      app/pages/index.vue
  3. 1 1
      nuxt.config.ts

+ 8 - 6
app/assets/main.css

@@ -1,8 +1,7 @@
 @import "tailwindcss";
 @import "@nuxt/ui";
 
-@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
-@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
+@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
 
 body {
   font-family: 'Exo', sans-serif;
@@ -14,7 +13,10 @@ body {
   color: #0A0B09;
 }
 
-:root {
-  --color-primary: #8AAB10;
-  --font-inter: 'Inter', sans-serif;
-}
+.font-inter {
+  font-family: 'Inter', sans-serif;
+}
+
+.text-gradient {
+  @apply bg-radial from-white to-[#E3FA6D] bg-clip-text text-transparent;
+}

+ 7 - 1
app/pages/index.vue

@@ -1,4 +1,10 @@
 <template>
+  <SectionHero />
   <SectionSecondary />
-  <FaqSection />
+  <SectionTertiary />
+  <SectionPartnership />
+  <SectionRoadMap />
+  <SectionExecutors />
+  <SectionGallery />
+  <!-- <SectionDestinations /> -->
 </template>

+ 1 - 1
nuxt.config.ts

@@ -14,7 +14,7 @@ export default defineNuxtConfig({
 
   app: {
     head: {
-      title: "Skeleton",
+      title: "Iguassu Alliance",
       link: [{ rel: "icon", type: "image/icon", href: "favicon.ico" }],
     },
   },