diff --git a/public/fonts/roadsterscript-gopgq.ttf b/public/fonts/roadsterscript-gopgq.ttf new file mode 100644 index 0000000..000ef46 Binary files /dev/null and b/public/fonts/roadsterscript-gopgq.ttf differ diff --git a/public/icons/design.svg b/public/icons/design.svg new file mode 100644 index 0000000..6e059b8 --- /dev/null +++ b/public/icons/design.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/icons/down-arrow.svg b/public/icons/down-arrow.svg new file mode 100644 index 0000000..bba93f6 --- /dev/null +++ b/public/icons/down-arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/email.svg b/public/icons/email.svg new file mode 100644 index 0000000..c413638 --- /dev/null +++ b/public/icons/email.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/mobile.svg b/public/icons/mobile.svg new file mode 100644 index 0000000..c71f823 --- /dev/null +++ b/public/icons/mobile.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/icons/phone.svg b/public/icons/phone.svg new file mode 100644 index 0000000..38a8b14 --- /dev/null +++ b/public/icons/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/send.svg b/public/icons/send.svg new file mode 100644 index 0000000..044348d --- /dev/null +++ b/public/icons/send.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/sun-full.svg b/public/icons/sun-full.svg new file mode 100644 index 0000000..b4d30ae --- /dev/null +++ b/public/icons/sun-full.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/icons/sunset.svg b/public/icons/sunset.svg new file mode 100644 index 0000000..55ff1bf --- /dev/null +++ b/public/icons/sunset.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/web.svg b/public/icons/web.svg new file mode 100644 index 0000000..d9eb41e --- /dev/null +++ b/public/icons/web.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/ribbon.svg b/public/images/ribbon.svg new file mode 100644 index 0000000..093ceed --- /dev/null +++ b/public/images/ribbon.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/sand-bottom-1.svg b/public/images/sand-bottom-1.svg new file mode 100644 index 0000000..5717c0b --- /dev/null +++ b/public/images/sand-bottom-1.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/sand-top-1.svg b/public/images/sand-top-1.svg new file mode 100644 index 0000000..860f233 --- /dev/null +++ b/public/images/sand-top-1.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/sand-top-2.svg b/public/images/sand-top-2.svg new file mode 100644 index 0000000..cc686d6 --- /dev/null +++ b/public/images/sand-top-2.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/images/sunrise-display.svg b/public/images/sunrise-display.svg new file mode 100644 index 0000000..93b8a47 --- /dev/null +++ b/public/images/sunrise-display.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/RootLayout.tsx b/src/components/RootLayout.tsx index 9b790bf..2dccb24 100644 --- a/src/components/RootLayout.tsx +++ b/src/components/RootLayout.tsx @@ -1,8 +1,15 @@ import { Plus_Jakarta_Sans } from "next/font/google"; +import localFont from "next/font/local"; import { Header } from "~/components/Header"; import { Footer } from "~/components/Footer"; import type { PropsWithChildren } from "react"; +const roadster = localFont({ + src: "../../public/fonts/roadsterscript-gopgq.ttf", + display: "block", + preload: true, + variable: "--font-roadster", +}); const jakarta = Plus_Jakarta_Sans({ subsets: ["latin"], weight: ["400", "600", "800"], @@ -15,7 +22,9 @@ export const RootLayout: React.FC = ({ children }) => { return ( <>
-
+
{children}