add new logo
This commit is contained in:
parent
441f9e9f13
commit
a38ae31c9e
3 changed files with 13 additions and 5 deletions
BIN
src/assets/logo.png
Normal file
BIN
src/assets/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
|
|
@ -2,6 +2,8 @@ import Link from "next/link";
|
|||
import { useEffect, useState } from "react";
|
||||
import { Bars3Icon } from "@heroicons/react/24/outline";
|
||||
import { useRouter } from "next/router";
|
||||
import logo from "~/assets/logo.png";
|
||||
import Image from "next/image";
|
||||
|
||||
const navigation = [
|
||||
{ name: "Overview", href: "/" },
|
||||
|
|
@ -30,14 +32,13 @@ export default function Header() {
|
|||
>
|
||||
<div className="m-auto flex w-[1048px] items-center justify-between px-[24px]">
|
||||
<Link href="/">
|
||||
<img
|
||||
<Image
|
||||
className="cursor-pointer p-2"
|
||||
src={
|
||||
"https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600"
|
||||
}
|
||||
src={logo}
|
||||
alt="logo"
|
||||
width={42}
|
||||
height={42}
|
||||
unoptimized
|
||||
/>
|
||||
</Link>
|
||||
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ import Image from "next/image";
|
|||
import CTA from "~/components/CTA";
|
||||
import engineeringUsecase from "~/assets/engineering usecase.png";
|
||||
import supportUsecase from "~/assets/support usecase.png";
|
||||
import logo from "~/assets/logo.png";
|
||||
|
||||
const Home: NextPage = () => {
|
||||
const [, setRecordOpen] = useAtom(recordVideoModalOpen);
|
||||
|
|
@ -160,7 +161,13 @@ const Home: NextPage = () => {
|
|||
{[
|
||||
{
|
||||
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",
|
||||
description:
|
||||
|
|
|
|||
Loading…
Reference in a new issue