@@ -44,31 +44,27 @@ const features = [
4444<template >
4545 <BaseContainer >
4646 <section class =" xl:pt-[120px] pt-[52px] xl:px-0 px-5 dark:bg-[#101010]" >
47- <h1 class =" font-[BauhausNanoDisplayRegular] xl:text-[40px] text-[30px] mb-[48px] text-center text-[#101010] dark:text-[#EDEEF2]" >
47+ <h1
48+ class =" font-[BauhausNanoDisplayRegular] xl:text-[40px] text-[30px] mb-[48px] text-center text-[#101010] dark:text-[#EDEEF2]" >
4849 Powerhouse Tools for Developers
4950 </h1 >
50-
5151 <div class =" grid grid-cols-1 md:grid-cols-2 gap-[43px] xl:pb-[70px] pb-[52px] mx-auto" >
52- <Card v-for =" (f, i) in features" :key =" i" class =" border border-[#EDEEF2] dark:border-[#2B2A32] bg-transparent xl:p-8 p-5 rounded-3xl" >
53- <template #content >
54- <div class =" flex xl:gap-7 gap-4" >
55- <img
56- v-if =" isMounted"
57- :src =" `/website/icons/${colorMode.value === 'dark' ? f.icon : f.iconLight}`"
58- :alt =" f.title"
59- class =" xl:w-[56px] xl:h-[56px] w-[52px] h-[52px]"
60- />
61- <div class =" flex flex-col" >
62- <h3 class =" xl:text-xl text-[19px] dark:text-[#EDEEF2] text-[#101010] mb-3 font-[BauhausNanoDisplayMedium]" >
63- {{ f.title }}
64- </h3 >
65- <p class =" dark:text-[#BBBBBF] text-[#2B2A32] xl:text-lg text-[17px] font-[InterRegular]" >
66- {{ f.details }}
67- </p >
68- </div >
52+ <div v-for =" (f, i) in features" :key =" i"
53+ class =" border border-[#EDEEF2] dark:border-[#2B2A32] bg-transparent xl:p-8 p-5 rounded-3xl" >
54+ <div class =" flex xl:gap-7 gap-4" >
55+ <img v-if =" isMounted" :src =" `/website/icons/${colorMode.value === 'dark' ? f.icon : f.iconLight}`"
56+ :alt =" f.title" class =" xl:w-[56px] xl:h-[56px] w-[52px] h-[52px]" />
57+ <div class =" flex flex-col" >
58+ <h3
59+ class =" xl:text-xl text-[19px] dark:text-[#EDEEF2] text-[#101010] mb-3 font-[BauhausNanoDisplayMedium]" >
60+ {{ f.title }}
61+ </h3 >
62+ <p class =" dark:text-[#BBBBBF] text-[#2B2A32] xl:text-lg text-[17px] font-[InterRegular]" >
63+ {{ f.details }}
64+ </p >
6965 </div >
70- </template >
71- </Card >
66+ </div >
67+ </div >
7268 </div >
7369 </section >
7470 </BaseContainer >
0 commit comments