|
1 | 1 | import * as React from 'react' |
2 | 2 | import axios from 'axios' |
3 | | -import { Banner } from 'components/Banner' |
4 | | -import { Sticky } from 'components/Sticky' |
5 | | -import { Nav } from 'components/Nav' |
6 | | -import { siteConfig } from 'siteConfig' |
7 | | -import Link from 'next/link' |
8 | | -import { Footer } from 'components/Footer' |
9 | | -import { ClientsMarquee } from 'components/clients/ClientsMarquee' |
10 | | -import { Seo } from 'components/Seo' |
11 | 3 | import Head from 'next/head' |
12 | | -import SponsorPack from 'components/SponsorPack' |
| 4 | +import Link from 'next/link' |
| 5 | + |
| 6 | +// |
| 7 | +import { siteConfig } from '../siteConfig' |
| 8 | + |
| 9 | +import { Banner } from '../components/Banner' |
| 10 | +import { Sticky } from '../components/Sticky' |
| 11 | +import { Nav } from '../components/Nav' |
| 12 | +import { Footer } from '../components/Footer' |
| 13 | +import { ClientsMarquee } from '../components/clients/ClientsMarquee' |
| 14 | +import { Seo } from '../components/Seo' |
| 15 | +import SponsorPack from '../components/SponsorPack' |
13 | 16 |
|
14 | 17 | export const getStaticProps = async () => { |
15 | 18 | const { |
@@ -164,30 +167,30 @@ const Home = ({ sponsors }) => { |
164 | 167 | ENROLL NOW |
165 | 168 | </a> |
166 | 169 | <div className="grid pt-8 text-white max-w-screen-lg mx-auto text-lg"> |
167 | | - <a className="mb-2"> |
| 170 | + <span className="mb-2"> |
168 | 171 | <span className="bg-coral text-gray-800 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center"> |
169 | 172 | <Check /> |
170 | 173 | </span> |
171 | 174 | 50+ Lessons |
172 | | - </a> |
173 | | - <a className="mb-2"> |
| 175 | + </span> |
| 176 | + <span className="mb-2"> |
174 | 177 | <span className="bg-coral text-gray-800 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center"> |
175 | 178 | <Check /> |
176 | 179 | </span> |
177 | 180 | 3+ Hours of Live-Code Training |
178 | | - </a> |
179 | | - <a className="mb-2"> |
| 181 | + </span> |
| 182 | + <span className="mb-2"> |
180 | 183 | <span className="bg-coral text-gray-800 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center"> |
181 | 184 | <Check /> |
182 | 185 | </span> |
183 | 186 | Lesson Source Code |
184 | | - </a> |
185 | | - <a className="mb-2"> |
| 187 | + </span> |
| 188 | + <span className="mb-2"> |
186 | 189 | <span className="bg-coral text-gray-800 w-4 h-4 mr-2 rounded-full inline-flex items-center justify-center"> |
187 | 190 | <Check /> |
188 | 191 | </span> |
189 | 192 | Full API coverage |
190 | | - </a> |
| 193 | + </span> |
191 | 194 | </div> |
192 | 195 | </div> |
193 | 196 | </div> |
|
0 commit comments