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 { 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>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue