-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
268 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
import type { Metadata } from "next"; | ||
import { Inter } from "next/font/google"; | ||
import "../styles/globals.css"; | ||
import type { Metadata } from 'next' | ||
import { Inter } from 'next/font/google' | ||
import '../styles/globals.css' | ||
|
||
const inter = Inter({ subsets: ["latin"] }); | ||
const inter = Inter({ subsets: ['latin'] }) | ||
|
||
export const metadata: Metadata = { | ||
title: "Create Next App", | ||
description: "Generated by create next app", | ||
}; | ||
title: 'Create Next App', | ||
description: 'Generated by create next app', | ||
} | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: Readonly<{ | ||
children: React.ReactNode; | ||
children: React.ReactNode | ||
}>) { | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}>{children}</body> | ||
</html> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
import "../../styles/globals.css"; | ||
import type { Metadata } from "next"; | ||
import { Roboto } from "next/font/google"; | ||
import React from "react"; | ||
import '../../styles/globals.css' | ||
import type { Metadata } from 'next' | ||
import { Montserrat } from 'next/font/google' | ||
import React from 'react' | ||
|
||
const roboto = Roboto({ | ||
subsets: ["latin"], | ||
weight: ["100", "300", "400", "500", "700", "900"], | ||
}); | ||
const montserrat = Montserrat({ | ||
subsets: ['latin'], | ||
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], | ||
variable: '--font-montserrat', | ||
}) | ||
|
||
export const metadata: Metadata = { | ||
title: "Petdex", | ||
title: 'Petdex', | ||
description: | ||
"Bem vindo ao petdex. Clique aqui para saber mais sobre os pets.", | ||
}; | ||
'Bem vindo ao petdex. Clique aqui para saber mais sobre os pets.', | ||
} | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
children: React.ReactNode | ||
}) { | ||
return ( | ||
<html lang="en"> | ||
<body className={`${roboto.className} max-h-screen bg-primary-gray`}> | ||
<body className={`${montserrat.className} bg-primary-gray max-h-screen`}> | ||
{children} | ||
</body> | ||
</html> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
import Footer from '@/components/petdex/Footer/Footer' | ||
|
||
function Page() { | ||
return <h1>Petdex</h1>; | ||
return ( | ||
<> | ||
<Footer /> | ||
</> | ||
) | ||
} | ||
|
||
export default Page; | ||
export default Page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,45 @@ | ||
import { CloudIcon } from "./assets/CloudIcon"; | ||
import { CloudIcon } from './assets/CloudIcon' | ||
|
||
export default function Datas() { | ||
const dataNumbers = [ | ||
{ | ||
icon: CloudIcon, | ||
numbers: 1200, | ||
text: "Dados Importantes", | ||
text: 'Dados Importantes', | ||
}, | ||
{ | ||
icon: CloudIcon, | ||
numbers: 1200, | ||
text: "Dados Importantes", | ||
text: 'Dados Importantes', | ||
}, | ||
{ | ||
icon: CloudIcon, | ||
numbers: 1200, | ||
text: "Dados Importantes", | ||
text: 'Dados Importantes', | ||
}, | ||
{ | ||
icon: CloudIcon, | ||
numbers: 1200, | ||
text: "Dados Importantes", | ||
text: 'Dados Importantes', | ||
}, | ||
]; | ||
] | ||
|
||
return ( | ||
<section | ||
className="h-[247px] flex-center relative bg-gradient-to-r flex-wrap | ||
from-octopost-primaryViolet overflow-hidden to-octopost-primaryPink" | ||
> | ||
<div | ||
className=" after:bg-white/10 after:size-[800px] after:rounded-full after:absolute after:-right-52 after:-top-10 | ||
before:bg-white/5 before:size-[2000px] before:rounded-full before:absolute before:left-80 before:-top-[500px] after:overflow-hidden" | ||
></div> | ||
<section className="flex-center relative h-[247px] flex-wrap overflow-hidden bg-gradient-to-r from-octopost-primaryViolet to-octopost-primaryPink"> | ||
<div className="before:absolute before:-top-[500px] before:left-80 before:size-[2000px] before:rounded-full before:bg-white/5 after:absolute after:-right-52 after:-top-10 after:size-[800px] after:overflow-hidden after:rounded-full after:bg-white/10"></div> | ||
{dataNumbers.map(({ icon: Icon, ...data }, index) => ( | ||
<div key={index} className="flex gap-5 max-w-[300px] z-100 relative"> | ||
<div className="size-24 flex-center hover:scale-x-[-1] transition-all bg-white/30 rounded-md"> | ||
<div key={index} className="z-100 relative flex max-w-[300px] gap-5"> | ||
<div className="flex-center size-24 rounded-md bg-white/30 transition-all hover:scale-x-[-1]"> | ||
<Icon /> | ||
</div> | ||
<div className="flex flex-col text-white gap-2"> | ||
<h1 className="text-3xl font-bold ">1200+</h1> | ||
<p className="text-white/60 text-xl font-bold flex-wrap"> | ||
<div className="flex flex-col gap-2 text-white"> | ||
<h1 className="text-3xl font-bold">1200+</h1> | ||
<p className="flex-wrap text-xl font-bold text-white/60"> | ||
Dados importantes | ||
</p> | ||
</div> | ||
</div> | ||
))} | ||
</section> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import Facebook from '@/components/petdex/Footer/assets/Facebook' | ||
import Instagram from './assets/Instragram' | ||
import LogoPetdex from './assets/LogoPetdex' | ||
import Twitter from './assets/Twitter' | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer className="flex w-full items-center justify-center bg-[#1E2833]"> | ||
<div className="w-full text-white"> | ||
<div className="grid grid-flow-row items-center justify-center gap-y-8 py-8 lg:grid-flow-col lg:gap-x-52"> | ||
<div className="min-w-50 flex justify-center lg:col-start-2"> | ||
<LogoPetdex /> | ||
</div> | ||
|
||
<div className="flex min-w-52 items-center justify-center gap-10 text-sm"> | ||
<a href="/"> | ||
<span className="border-[#E0E0E0] hover:border-b-[1px]"> | ||
Home | ||
</span> | ||
</a> | ||
|
||
<a href="/"> | ||
<span className="border-[#E0E0E0] hover:border-b-[1px]"> | ||
Petdex | ||
</span> | ||
</a> | ||
|
||
<a href="/"> | ||
<span className="border-[#E0E0E0] hover:border-b-[1px]"> | ||
Contato | ||
</span> | ||
</a> | ||
</div> | ||
|
||
<div className="flex min-w-52 items-center justify-center gap-10"> | ||
<a href="/"> | ||
<Facebook /> | ||
</a> | ||
|
||
<a href="/"> | ||
<Twitter /> | ||
</a> | ||
|
||
<a href="/"> | ||
<Instagram /> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div className="mx-auto border-t-[1px] border-[#E0E0E0] lg:max-w-[70rem]"></div> | ||
|
||
<div className="flex w-full items-center justify-center py-6 text-base"> | ||
<span>© 2024 DevHat. All Rights Reserved</span> | ||
</div> | ||
</div> | ||
</footer> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export default function Facebook() { | ||
return ( | ||
<svg | ||
width="10" | ||
height="20" | ||
viewBox="0 0 10 20" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M8.11163 3.29509H9.92331V0.139742C9.61075 0.0967442 8.53581 0 7.28393 0C4.67183 0 2.88248 1.643 2.88248 4.66274V7.44186H0V10.9693H2.88248V19.845H6.41654V10.9701H9.18243L9.6215 7.44269H6.41571V5.01251C6.41654 3.99297 6.69106 3.29509 8.11163 3.29509Z" | ||
fill="white" | ||
/> | ||
</svg> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
export default function Instagram() { | ||
return ( | ||
<svg | ||
width="23" | ||
height="22" | ||
viewBox="0 0 23 22" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
fill-rule="evenodd" | ||
clip-rule="evenodd" | ||
d="M7.79834 0H16.0483C19.8447 0 22.9233 3.07862 22.9233 6.875V15.125C22.9233 18.9214 19.8447 22 16.0483 22H7.79834C4.00196 22 0.92334 18.9214 0.92334 15.125V6.875C0.92334 3.07862 4.00196 0 7.79834 0ZM16.0483 19.9375C18.7021 19.9375 20.8608 17.7787 20.8608 15.125V6.875C20.8608 4.22125 18.7021 2.0625 16.0483 2.0625H7.79834C5.14459 2.0625 2.98584 4.22125 2.98584 6.875V15.125C2.98584 17.7787 5.14459 19.9375 7.79834 19.9375H16.0483Z" | ||
fill="white" | ||
/> | ||
<path | ||
fill-rule="evenodd" | ||
clip-rule="evenodd" | ||
d="M6.42334 11C6.42334 7.96263 8.88596 5.5 11.9233 5.5C14.9607 5.5 17.4233 7.96263 17.4233 11C17.4233 14.0374 14.9607 16.5 11.9233 16.5C8.88596 16.5 6.42334 14.0374 6.42334 11ZM8.48584 11C8.48584 12.8948 10.0286 14.4375 11.9233 14.4375C13.8181 14.4375 15.3608 12.8948 15.3608 11C15.3608 9.10388 13.8181 7.5625 11.9233 7.5625C10.0286 7.5625 8.48584 9.10388 8.48584 11Z" | ||
fill="white" | ||
/> | ||
<circle cx="17.8358" cy="5.08737" r="0.732875" fill="white" /> | ||
</svg> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
export default function LogoPetdex() { | ||
return ( | ||
<svg | ||
width="147" | ||
height="29" | ||
viewBox="0 0 147 29" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g id="Group 1000001834"> | ||
<g id="Group 1000001859"> | ||
<g id="Group 1000001834_2"> | ||
<path | ||
id="Vector" | ||
d="M17.0016 6.49626V6.53373C17.0011 7.26641 17.1293 7.99369 17.3806 8.68355L17.3658 8.63884C17.6101 9.31107 18.0252 9.91089 18.5717 10.3814L18.5766 10.385C19.0947 10.8431 19.7837 11.1222 20.5393 11.1222H20.5983H20.5959C21.5926 11.1166 22.5472 10.7264 23.2537 10.0358C24.0255 9.34004 24.626 8.48089 25.0096 7.52344L25.0256 7.47752C25.3974 6.57267 25.5932 5.60735 25.6027 4.63163V4.58933C25.6027 3.83526 25.4686 3.1114 25.2237 2.43951L25.2385 2.48422C24.9942 1.81199 24.5791 1.21217 24.0326 0.741638L24.0277 0.738012C23.4716 0.246665 22.7452 -0.0170868 21.9974 0.00085922H22.0011C21.004 0.00504458 20.0489 0.395448 19.3432 1.08725C18.5791 1.78298 17.9837 2.63822 17.6009 3.58995L17.5849 3.63587C17.2293 4.48178 17.0189 5.46425 17.0078 6.49264V6.49626H17.0016ZM23.5786 15.6176L23.5773 15.7191C23.5759 16.6279 23.8618 17.5146 24.3956 18.2569L24.3858 18.2424C24.6292 18.5868 24.9538 18.8682 25.332 19.0626C25.7102 19.2571 26.1307 19.3587 26.5576 19.359L26.6794 19.3566H26.6732C27.6818 19.3457 28.6512 18.9716 29.3975 18.3052L29.3938 18.3088C30.1878 17.641 30.8299 16.8167 31.2787 15.8895C31.7274 14.9622 31.9728 13.9527 31.9988 12.9264V12.9167L32 12.8177C32 11.869 31.6973 10.9893 31.1817 10.2678L31.1916 10.2823C30.9383 9.91873 30.5947 9.62465 30.1933 9.42798C29.7919 9.2313 29.3461 9.13854 28.8979 9.15847H28.9041C27.8955 9.16937 26.9261 9.54348 26.1798 10.2098L26.1835 10.2062C25.3883 10.878 24.7456 11.7063 24.2969 12.6374C23.8482 13.5685 23.6034 14.5817 23.5786 15.6116V15.62V15.6176ZM15.9975 15.1077C14.2011 15.204 12.4805 15.851 11.0781 16.9578L11.0953 16.9445C9.37858 18.1419 7.89939 19.6376 6.73077 21.3577L6.69139 21.4194C5.63808 22.8092 5.0225 24.4716 4.92072 26.2012L4.91949 26.2254L4.91703 26.3305C4.91703 26.8187 5.03885 27.2804 5.25419 27.6852L5.2468 27.6695C5.45341 28.0407 5.77609 28.3368 6.16721 28.5142L6.17951 28.519C6.53758 28.687 6.95472 28.8187 7.39031 28.8924L7.41984 28.896C7.87405 28.9664 8.33324 29.0012 8.79306 29H8.88535H8.88042C10.1483 28.9175 11.3921 28.6207 12.5571 28.1226L12.4857 28.1504C13.586 27.6793 14.7589 27.3929 15.9557 27.3033L15.9939 27.3009C17.3511 27.4 18.6086 27.6997 19.7776 28.1698L19.6952 28.1408C20.9141 28.6216 22.2044 28.9048 23.5158 28.9794L23.5503 28.9806C25.9013 28.9822 27.0768 28.0642 27.0768 26.2266C27.0235 24.939 26.6465 23.6843 25.9792 22.5747L26.0002 22.6109C25.2803 21.2813 24.3758 20.0563 23.3128 18.9711L23.3177 18.9759C22.2786 17.9101 21.0904 16.995 19.7887 16.2581L19.7124 16.2182C18.6006 15.537 17.3267 15.1533 16.0172 15.1052H16.0025L15.9975 15.1077ZM11.4017 11.1234H11.4583C12.1839 11.1242 12.8841 10.8607 13.4234 10.3838L13.4209 10.3863C13.9631 9.92269 14.3763 9.33136 14.6219 8.66784L14.6317 8.63884C14.8758 7.96298 14.9995 7.25084 14.9972 6.53373V6.49385V6.49626C14.9861 5.46304 14.7757 4.48178 14.4004 3.5827L14.4201 3.63587C14.0388 2.66807 13.4388 1.79788 12.6654 1.09088L12.6605 1.08725C11.9546 0.396627 11.0002 0.0067715 10.0039 0.00206767H9.94602C9.19051 0.00206767 8.50143 0.282428 7.98094 0.741638L7.9834 0.739221C7.44445 1.20206 7.02855 1.78936 6.78245 2.45763L6.7726 2.48664C6.53758 3.11745 6.40223 3.84614 6.40223 4.60504V4.62921V4.628C6.41289 5.62427 6.61537 6.60957 6.99901 7.5319L6.97933 7.47873C7.36091 8.45181 7.96552 9.32554 8.7463 10.0322L8.75122 10.037C9.45808 10.7259 10.412 11.1147 11.4078 11.1198H11.4091L11.4017 11.1234ZM3.09592 9.16089L2.98271 9.15847C2.08323 9.15847 1.28957 9.60077 0.814598 10.2763L0.808445 10.2847C0.279819 11.0285 -0.00247574 11.9142 1.71661e-05 12.8213L0.00124931 12.9252V12.9204C0.0254803 13.9461 0.269035 14.9553 0.716108 15.8825C1.16318 16.8098 1.80378 17.6344 2.59634 18.3028L2.60618 18.3113C3.35134 18.9751 4.31832 19.3478 5.32432 19.359H5.32679C5.77114 19.3786 6.21333 19.2875 6.6122 19.0942C7.01107 18.9008 7.35367 18.6116 7.6081 18.2532L7.61426 18.2448C8.16394 17.4762 8.44698 16.5541 8.42145 15.6152V15.62C8.39789 14.5907 8.15476 13.5777 7.70776 12.6465C7.26076 11.7152 6.61983 10.8863 5.82636 10.2134L5.81652 10.205C5.0722 9.54322 4.10725 9.17146 3.1033 9.15968H3.10084L3.09592 9.16089Z" | ||
fill="white" | ||
/> | ||
</g> | ||
<g id="Petdex"> | ||
<path | ||
id="Vector_2" | ||
d="M143.512 9.2373H146.807V9.76147C146.807 13.1311 145.459 15.8269 142.763 17.8487C144.061 18.7972 145.06 19.9828 145.759 21.4056C146.458 22.8033 146.807 24.2885 146.807 25.861V27.2089H143.512V25.861C143.512 24.4632 143.175 23.2027 142.501 22.0795C141.827 20.9563 140.829 20.0951 139.506 19.4961C138.208 20.1201 137.21 21.0187 136.511 22.1918C135.837 23.365 135.5 24.6629 135.5 26.0857V27.2089H132.205V26.0857C132.205 22.5912 133.553 19.8455 136.249 17.8487C133.553 15.8269 132.205 13.0563 132.205 9.53683V9.2373H135.5V9.53683C135.5 10.9596 135.837 12.2575 136.511 13.4307C137.21 14.6038 138.208 15.5149 139.506 16.1638C142.177 14.9158 143.512 12.7817 143.512 9.76147V9.2373Z" | ||
fill="white" | ||
/> | ||
<path | ||
id="Vector_3" | ||
d="M123.037 8.86276C127.28 9.03748 129.402 10.7972 129.402 14.1419C129.402 18.3103 126.669 20.3945 121.202 20.3945H119.667V17.5116H121.465C123.137 17.5116 124.298 17.262 124.947 16.7628C125.596 16.2386 125.92 15.3775 125.92 14.1793C125.92 13.4056 125.633 12.8315 125.059 12.4571C124.485 12.0577 123.748 11.858 122.85 11.858C121.078 11.858 119.68 12.482 118.657 13.7301C117.658 14.9781 117.159 16.4757 117.159 18.223C117.159 20.07 117.696 21.5677 118.769 22.7158C119.867 23.864 121.29 24.4381 123.037 24.4381C124.61 24.4381 125.895 24.0512 126.893 23.2775L129.14 25.4865C127.418 26.8843 125.383 27.5831 123.037 27.5831C120.192 27.5831 117.92 26.747 116.223 25.0746C114.526 23.4023 113.677 21.2432 113.677 18.5974C113.677 15.652 114.513 13.2683 116.185 11.4462C117.858 9.62406 120.142 8.76292 123.037 8.86276Z" | ||
fill="white" | ||
/> | ||
<path | ||
id="Vector_4" | ||
d="M106.377 1H109.747V27.2085H100.948C98.2277 27.2085 96.0187 26.3474 94.3214 24.6251C92.624 22.8779 91.7754 20.6814 91.7754 18.0356C91.7754 15.4397 92.649 13.2681 94.3962 11.5209C96.1684 9.74866 98.2651 8.86256 100.686 8.86256C102.234 8.86256 103.682 9.23697 105.029 9.98579V13.3555C103.781 12.4569 102.334 12.0076 100.686 12.0076C99.1887 12.0076 97.9157 12.5692 96.8673 13.6924C95.844 14.7907 95.3323 16.2384 95.3323 18.0356C95.3323 19.8577 95.819 21.3179 96.7925 22.4161C97.7909 23.5144 99.1762 24.0635 100.948 24.0635H106.377V1Z" | ||
fill="white" | ||
/> | ||
<path | ||
id="Vector_5" | ||
d="M77.0095 12.3821L83.7114 5.68018V9.23705H88.7659V12.3821H83.7114V20.0949C83.7114 20.9685 83.8487 21.6923 84.1233 22.2664C84.4228 22.8405 84.8471 23.2524 85.3963 23.502C85.9454 23.7266 86.4571 23.8764 86.9313 23.9513C87.4305 24.0262 88.0421 24.0636 88.7659 24.0636V27.2086C85.8955 27.2086 83.7738 26.6595 82.401 25.5612C81.0282 24.463 80.3418 22.6408 80.3418 20.0949V12.3821H77.0095Z" | ||
fill="white" | ||
/> | ||
<path | ||
id="Vector_6" | ||
d="M68.7769 8.86276C73.0202 9.03748 75.1419 10.7972 75.1419 14.1419C75.1419 18.3103 72.4087 20.3945 66.9423 20.3945H65.4073V17.5116H67.2044C68.8768 17.5116 70.0374 17.262 70.6864 16.7628C71.3354 16.2386 71.6599 15.3775 71.6599 14.1793C71.6599 13.4056 71.3728 12.8315 70.7987 12.4571C70.2247 12.0577 69.4883 11.858 68.5897 11.858C66.8175 11.858 65.4198 12.482 64.3964 13.7301C63.398 14.9781 62.8987 16.4757 62.8987 18.223C62.8987 20.07 63.4354 21.5677 64.5087 22.7158C65.607 23.864 67.0297 24.4381 68.7769 24.4381C70.3495 24.4381 71.6349 24.0512 72.6333 23.2775L74.8798 25.4865C73.1575 26.8843 71.1232 27.5831 68.7769 27.5831C65.9314 27.5831 63.66 26.747 61.9627 25.0746C60.2654 23.4023 59.4167 21.2432 59.4167 18.5974C59.4167 15.652 60.2529 13.2683 61.9253 11.4462C63.5976 9.62406 65.8815 8.76292 68.7769 8.86276Z" | ||
fill="white" | ||
/> | ||
<path | ||
id="Vector_7" | ||
d="M42.5834 27.583C42.2839 27.583 41.9719 27.533 41.6474 27.4332C41.3479 27.3334 41.0983 27.0962 40.8986 26.7218C40.6989 26.3474 40.5991 25.7733 40.5991 24.9995C40.5991 24.3755 40.649 23.5893 40.7488 22.6408C40.8736 21.6673 41.0234 20.6315 41.1981 19.5332C41.3728 18.41 41.5101 17.2243 41.61 15.9763C41.7348 14.7283 41.7972 13.4678 41.7972 12.1948C41.7972 11.6956 41.7847 11.1589 41.7597 10.5849C41.7348 10.0108 41.6848 9.44915 41.61 8.90002C41.4352 8.99986 41.2605 9.08722 41.0858 9.1621C40.936 9.21202 40.7863 9.23698 40.6365 9.23698C40.2122 9.23698 40 8.82513 40 8.00144C40 7.25262 40.1622 6.62861 40.4867 6.1294C40.8362 5.60523 41.4602 5.10602 42.3588 4.63177C43.2324 4.15752 44.2558 3.77063 45.4289 3.47111C46.627 3.14662 47.8376 2.98438 49.0607 2.98438C51.4818 2.98438 53.4163 3.62087 54.864 4.89385C56.3367 6.16684 57.073 7.86416 57.073 9.9858C57.073 11.2837 56.8109 12.4819 56.2867 13.5801C55.7626 14.6784 55.0637 15.6394 54.1901 16.4631C53.3414 17.2618 52.4054 17.8858 51.382 18.3351C50.3836 18.7594 49.3976 18.9716 48.4242 18.9716C47.5006 18.9716 46.8766 18.7719 46.5521 18.3725C46.2276 17.9482 46.0654 17.3492 46.0654 16.5754C46.0654 16.201 46.1028 15.864 46.1777 15.5645C46.2776 15.24 46.4773 15.0777 46.7768 15.0777C46.8517 15.0777 46.964 15.0902 47.1137 15.1152C47.2635 15.1401 47.4133 15.1776 47.563 15.2275C47.7128 15.2525 47.925 15.2899 48.1995 15.3398C48.4741 15.3898 48.7861 15.4147 49.1355 15.4147C50.5084 15.4147 51.6191 15.0278 52.4678 14.254C53.3414 13.4803 53.7782 12.4819 53.7782 11.2588C53.7782 9.9858 53.304 8.98738 52.3555 8.26352C51.407 7.53967 50.1839 7.17774 48.6863 7.17774C48.1371 7.17774 47.5755 7.22766 47.0014 7.3275C46.4273 7.40239 45.8532 7.51471 45.2791 7.66447C45.2043 9.31187 45.0295 11.1839 44.755 13.2806C44.6052 14.5286 44.4679 15.7642 44.3431 16.9872C44.2433 18.1853 44.1934 19.2836 44.1934 20.282C44.1934 21.1556 44.2682 21.9294 44.418 22.6033C44.5927 23.2523 44.9297 23.8139 45.4289 24.2882C45.7784 24.6376 45.9531 25.012 45.9531 25.4114C45.9531 25.9605 45.6411 26.4597 45.0171 26.909C44.3931 27.3583 43.5818 27.583 42.5834 27.583Z" | ||
fill="white" | ||
/> | ||
</g> | ||
</g> | ||
</g> | ||
</svg> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export default function Twitter() { | ||
return ( | ||
<svg | ||
width="23" | ||
height="18" | ||
viewBox="0 0 23 18" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M22.9233 2.11613C22.1052 2.475 21.2335 2.71288 20.3246 2.82838C21.2596 2.27013 21.9732 1.39287 22.3087 0.3355C21.437 0.85525 20.4745 1.22238 19.4487 1.42725C18.621 0.545875 17.4412 0 16.1542 0C13.6572 0 11.647 2.02675 11.647 4.51137C11.647 4.86888 11.6772 5.21263 11.7515 5.53988C8.00184 5.357 4.68396 3.55988 2.45509 0.82225C2.06596 1.49738 1.83771 2.27012 1.83771 3.102C1.83771 4.664 2.64209 6.04862 3.84109 6.85025C3.11646 6.8365 2.40559 6.62613 1.80334 6.29475C1.80334 6.3085 1.80334 6.32638 1.80334 6.34425C1.80334 8.536 3.36672 10.3565 5.41684 10.7759C5.04972 10.8763 4.64959 10.9244 4.23434 10.9244C3.94559 10.9244 3.65409 10.9079 3.38046 10.8474C3.96484 12.6335 5.62309 13.9466 7.59484 13.9893C6.06034 15.1896 4.11196 15.9129 2.00271 15.9129C1.63284 15.9129 1.27809 15.8964 0.92334 15.851C2.92121 17.1394 5.28897 17.875 7.84234 17.875C16.1418 17.875 20.6793 11 20.6793 5.04075C20.6793 4.84137 20.6725 4.64887 20.6628 4.45775C21.558 3.8225 22.3101 3.02913 22.9233 2.11613Z" | ||
fill="white" | ||
/> | ||
</svg> | ||
) | ||
} |
Oops, something went wrong.