add new logo

This commit is contained in:
MarconLP 2023-05-03 19:54:56 +02:00
parent 441f9e9f13
commit a38ae31c9e
No known key found for this signature in database
GPG key ID: F4CAFFDFA3451D5E
3 changed files with 13 additions and 5 deletions

BIN
src/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -2,6 +2,8 @@ import Link from "next/link";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { Bars3Icon } from "@heroicons/react/24/outline"; import { Bars3Icon } from "@heroicons/react/24/outline";
import { useRouter } from "next/router"; import { useRouter } from "next/router";
import logo from "~/assets/logo.png";
import Image from "next/image";
const navigation = [ const navigation = [
{ name: "Overview", href: "/" }, { name: "Overview", href: "/" },
@ -30,14 +32,13 @@ export default function Header() {
> >
<div className="m-auto flex w-[1048px] items-center justify-between px-[24px]"> <div className="m-auto flex w-[1048px] items-center justify-between px-[24px]">
<Link href="/"> <Link href="/">
<img <Image
className="cursor-pointer p-2" className="cursor-pointer p-2"
src={ src={logo}
"https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600"
}
alt="logo" alt="logo"
width={42} width={42}
height={42} height={42}
unoptimized
/> />
</Link> </Link>

View file

@ -14,6 +14,7 @@ import Image from "next/image";
import CTA from "~/components/CTA"; import CTA from "~/components/CTA";
import engineeringUsecase from "~/assets/engineering usecase.png"; import engineeringUsecase from "~/assets/engineering usecase.png";
import supportUsecase from "~/assets/support usecase.png"; import supportUsecase from "~/assets/support usecase.png";
import logo from "~/assets/logo.png";
const Home: NextPage = () => { const Home: NextPage = () => {
const [, setRecordOpen] = useAtom(recordVideoModalOpen); const [, setRecordOpen] = useAtom(recordVideoModalOpen);
@ -160,7 +161,13 @@ const Home: NextPage = () => {
{[ {[
{ {
icon: ( icon: (
<VideoCameraIcon className="h-12 w-12 text-[#ff0000]" /> <Image
src={logo}
alt="logo"
width={48}
height={48}
unoptimized
/>
), ),
title: "1. Record a video message", title: "1. Record a video message",
description: description: