@@ -4,23 +4,19 @@ import QuickAnswerList from '../components/QuickAnswerList.vue';
44import usePortfolio from ' ../usePortfolio.ts' ;
55
66const { quickAnswers } = usePortfolio ();
7-
8- // const placeholder = computed(() =>
9- // searchSuggestions.value?.map((item) => item.suggestion)
10- // );
117 </script >
128
139<template >
14- <AppHeader />
15- <div class =" start__background" >
16- </div >
17- <main class =" start__layout" >
10+ <AppHeader />
11+ <div class =" start__background" ></div >
12+ <main class =" start__layout layout" >
1813 <h1 class =" start__jumboH1" >Discover our customer success stories</h1 >
19- <!-- <h2 class="start__h1">What are you interested in?</h2> -->
2014
2115 <div class =" start__actions" >
22- <!-- <Input :placeholder="placeholder" />-->
23- <QuickAnswerList v-if =" quickAnswers && quickAnswers.length" :tags =" quickAnswers" />
16+ <QuickAnswerList
17+ v-if =" quickAnswers && quickAnswers.length"
18+ :tags =" quickAnswers"
19+ />
2420 </div >
2521
2622 <RouterLink
@@ -60,7 +56,14 @@ const { quickAnswers } = usePortfolio();
6056 min-height : 100% ;
6157 transform : translate (-50% , -50% );
6258 z-index : 0 ;
63- background : linear-gradient (var (--background-rotation , 225deg ), #35CACF 0.54% , #3D54CE 35.45% , #000 100% ), #000048 ;
59+ background :
60+ linear-gradient (
61+ var (--background-rotation , 225deg ),
62+ #35cacf 0.54% ,
63+ #3d54ce 35.45% ,
64+ #000 100%
65+ ),
66+ #000048 ;
6467 animation : startBackgroundRotation 12s linear infinite ;
6568 }
6669
@@ -77,7 +80,7 @@ const { quickAnswers } = usePortfolio();
7780 vertical-align : middle ;
7881 color : var (--white-100 );
7982 }
80-
83+
8184 & __jumboH1 {
8285 font-size : 40px ;
8386 line-height : 95% ;
@@ -112,13 +115,12 @@ const { quickAnswers } = usePortfolio();
112115 display : inline-block ;
113116 margin-top : 27px ;
114117 font-size : 20px ;
115- color : var (--white-100 )
118+ color : var (--white-100 );
116119 }
117120}
118121
119122main {
120123 z-index : 10 ;
121124 position : relative ;
122125}
123-
124126 </style >
0 commit comments