diff --git a/components/components.module.css b/components/components.module.css index f69f320f8..a25b42c5f 100644 --- a/components/components.module.css +++ b/components/components.module.css @@ -183,3 +183,17 @@ font-weight: 400; line-height: 20px; } + +.mainTitleHeading { + color: var(--Indigo-Indigo-900---Fetch-navy, #000d3d); + font-family: Lexend; + font-size: 24px; + font-style: normal; + font-weight: 400; + line-height: 140%; + letter-spacing: -0.24px; +} + +:is(html[class~="dark"] .mainTitleHeading) { + color: #e9e9ea; +} diff --git a/components/feature-guide-tabs.tsx b/components/feature-guide-tabs.tsx index ab03ec1a1..2af85154f 100644 --- a/components/feature-guide-tabs.tsx +++ b/components/feature-guide-tabs.tsx @@ -1,6 +1,7 @@ -import React, { useEffect, useState } from "react"; +import React, { useState, useEffect } from "react"; import styles from "./tab.module.css"; import { useRouter } from "next/router"; +import Link from "next/link"; export const GuideBox = ({ content, @@ -42,6 +43,50 @@ export const GuideBox = ({ ); }; +const FeaturedGuidesTab = ({ + item, +}: { + item: { type: string; title: string; path: string; label: string }; +}) => { + return ( +