diff --git a/docs/public/car.webp b/docs/public/car.webp new file mode 100644 index 00000000..6473d936 Binary files /dev/null and b/docs/public/car.webp differ diff --git a/docs/public/horse.webp b/docs/public/horse.webp new file mode 100644 index 00000000..e761cb4e Binary files /dev/null and b/docs/public/horse.webp differ diff --git a/docs/src/components/ButtonList.tsx b/docs/src/components/ButtonList.tsx index 552e2952..6c43690f 100644 --- a/docs/src/components/ButtonList.tsx +++ b/docs/src/components/ButtonList.tsx @@ -12,7 +12,6 @@ export function ButtonList() { className={clsx([ "align-center", "flex", - "w-[187px]", "flex-row", "justify-between", "wide-phone:w-[220px]", @@ -65,10 +64,11 @@ export function ButtonList() { } const sharedClasses = clsx([ - "w-[44px]", + "w-[34px]", "h-[23px]", "rounded-[4px]", - "text-[14px]", + "text-[12px]", + "wide-phone:w-[44px]", "tablet:w-[73px]", "desktop:w-[110px]", "hover:text-white", diff --git a/docs/src/components/FooterCTA/Car.tsx b/docs/src/components/FooterCTA/Car.tsx new file mode 100644 index 00000000..2912777e --- /dev/null +++ b/docs/src/components/FooterCTA/Car.tsx @@ -0,0 +1,59 @@ +import clsx from "clsx"; +import { buttonClasses } from "./constants"; +import Link from "next/link"; +import { useRouter } from "next/router"; +import { getPathParts } from "@/lib/languageFromPath"; + +interface CarProps { + imageHeight: number; +} +export function Car({ imageHeight }: CarProps) { + const router = useRouter(); + const pathParts = getPathParts(router.pathname); + return ( +
{
}
```
-See the [advanced section](/jvm/advanced) for more details.
\ No newline at end of file
+See the [advanced section](/jvm/advanced) for more details.
+
+