about us page done

This commit is contained in:
Jacob Delgado 2023-11-01 22:53:34 -07:00
parent ea75e6f7f8
commit 14b5cda77f
58 changed files with 417 additions and 46 deletions

View File

@ -0,0 +1,84 @@
import React from "react";
import Image from "next/image";
const AboutUs = () => {
return (
<div className="">
<div className="flex items-center justify-center text-center text-4xl hidden xl:block text-jefesRed bg-secondary">
About Us
</div>
<div className="flex items-center justify-center p-4 text-center text-2xl block xl:hidden text-jefesRed bg-secondary">
About Us
</div>
<div className="flex items-center justify-center p-4 text-center text-4xl hidden xl:block text-secondary">
Jefe's Mexican Cantina & Cocina
</div>
<div className="flex items-center justify-center h-16 p-4 text-center text-2xl block xl:hidden text-secondary">
Jefe's Mexican Cantina & Cocina
</div>
<div className="flex mb-5 mx-auto max-w-xl relative items-center justify-center">
<Image
src="/kevin.webp"
width={0}
height={0}
sizes="100vw"
style={{ width: "60%", height: "auto" }}
alt="Photo of Kevin mobile."
className="block xl:hidden"
/>
</div>
<div className="flex gap-8 mx-auto relative max-w-screen-xl text-xl font-serif antialiased">
<Image
src="/kevin.webp"
width={0}
height={0}
sizes="100vw"
style={{ width: "100%", height: "auto" }}
alt="Photo of Kevin."
className="hidden xl:block p-4"
/>
<div className="space-y-6">
<p>
My name is Kevin Aguilar, and I am the owner and manager of the
Jefe's Mexican Cantina and Cocina based in Broken Arrow, Oklahoma.
Our combination of authentic Mexican dishes, excellent customer
service, and family-friendly environment makes us one of the best
Mexican restaurants around.
</p>
<div>
<p>
Whether you are wanting to book our upstairs venue for an event,
wanting to try out our creative alcoholic drinks or just wanting
to enjoy a meal with a loved one, you quickly see why so many
people choose Jefe's. We take pride in our business as one of the
highest rated Mexican restaurants in Broken Arrow.
</p>
</div>
<div>
<p>
We just wanted to take a moment to express our heartfelt gratitude
to all of our loyal customers. Your continued support and loyalty
means the world to us, and it is because of you that we are able
to continue doing what we love. Thank you for choosing our
restaurant and for allowing us to serve you. We promise to always
strive for excellence and to bring you the best dining experience
possible. Thank you again!
</p>
</div>
</div>
</div>
<div className="mx-auto flex items-center justify-center top-2">
<Image
src="/award.jpg"
width={0}
height={0}
sizes="20vw"
style={{ width: "10%", height: "auto" }}
alt="Photo of award."
/>
</div>
</div>
);
};
export default AboutUs;

View File

@ -1,48 +1,104 @@
'use client';
import React from "react";
"use client";
import React, { useState } from "react";
import Link from "next/link";
import Image from "next/image";
import Jefes from "../../../public/jefes_logo.jpg";
import { usePathname } from "next/navigation";
import classnames from 'classnames';
import classnames from "classnames";
import { GiHamburgerMenu } from "react-icons/gi";
import { MdOutlineRestaurantMenu } from "react-icons/md";
const NavBar = () => {
const currentPath = usePathname();
console.log(currentPath);
const currentPath = usePathname();
console.log(currentPath);
const [toggle_menu, set_toggle_menu] = useState(false);
// Create an array to hold the list items
const links = [
{ label: "Home", href: "/home" },
{ label: "Menu", href: "/menu" },
{ label: "AboutUs", href: "/about-us" },
{ label: "Contact", href: "/contact"},
{ label: "Gallery", href: "/gallery"},
{ label: "Dashboard", href: "/dashboard" },
{ label: "Users", href: "/users" },
{ label: "About", href: "/about-us" },
{ label: "Contact", href: "/contact" },
{ label: "Gallery", href: "/gallery" },
{ label: "Reviews", href: "/reviews" },
// { label: "Dashboard", href: "/dashboard" },
// { label: "Users", href: "/users" },
{ label: "Issues", href: "/issues" },
];
return (
<nav className="flex gap-4 border-b mb-5 px-5 h-14 items-center">
<nav className="flex p-4 bg-secondary">
<Link href="/">
<Image src={Jefes} width={50} height={50} alt="Logo" />
<Image
src="/logo.svg"
width={0}
height={0}
sizes="200vw"
style={{ width: "50%", height: "auto" }}
alt="Logo"
className="hidden md:block"
/>
<Image
src="/logo.svg"
width={0}
height={0}
sizes="100vw"
style={{ width: "50%", height: "auto" }}
alt="Logo"
className="block md:hidden"
/>
</Link>
<ul className="flex gap-4 hover:cursor-pointer">
<div className="flex justify-center p-8 mx-auto w-full">
<ul className="hover:cursor-pointer hidden md:block space-x-4 text-xl font-sans antialiased m-auto">
{links.map((link) => (
<Link
key={link.href}
// className={`${link.href === currentPath ? 'text-zinc-900' : 'text-zinc-500 hover:text-zinc-800'}`}
// replace with classnames object instead
className={classnames({
'text-emerald-400': link.href === currentPath,
'text-white' : link.href !== currentPath,
'hover:text-emerald-400': true,
"border-b border-jefesRed text-base-100":
link.href === currentPath,
"text-base-100": link.href !== currentPath,
"hover:text-jefesRed": true,
})}
href={link.href}>
href={link.href}
>
{link.label}
</Link>
))}
</ul>
</div>
<div className="block md:hidden">
<GiHamburgerMenu
className="text-base-100 text-4xl space-x-2 absolute top-3 right-3"
onClick={() => set_toggle_menu(true)}
/>
{toggle_menu && (
<div className="navbar_small_screen_overlay flex_center slide_bottom">
<MdOutlineRestaurantMenu
fontSize={27}
className="text-base-100 absolute top-3 right-3 text-4xl"
onClick={() => set_toggle_menu(false)}
/>
<ul className="flex-col text-2xl col-auto gap-4 grid-cols-1 table-auto absolute">
{links.map((link) => (
<Link
key={link.href}
// className={`${link.href === currentPath ? 'text-zinc-900' : 'text-zinc-500 hover:text-zinc-800'}`}
// replace with classnames object instead
className={classnames({
"border-b border-jefesRed text-base-100":
link.href === currentPath,
"text-base-100": link.href !== currentPath,
// "hover:text-jefesRed": true,
})}
href={link.href}
>
{link.label}
</Link>
))}
</ul>
</div>
)}
</div>
</nav>
);
};

View File

@ -12,7 +12,3 @@
}
}
body {
color: white;
}

View File

@ -16,7 +16,7 @@ export default function RootLayout({
children: React.ReactNode
}) {
return (
<html lang="en" data-theme="night">
<html lang="en" data-theme="jefes">
<body className={inter.className}>
<NavBar />
<main>{children}</main>

View File

@ -0,0 +1,9 @@
import React from 'react'
const Reviews = () => {
return (
<div>Reviews</div>
)
}
export default Reviews

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 307.2 307.2" style="enable-background:new 0 0 307.2 307.2;" xml:space="preserve">
<g>
<g>
<polygon points="307.2,24.136 283.064,0 153.6,129.469 24.136,0 0,24.136 129.464,153.6 0,283.064 24.136,307.2 153.6,177.736
283.064,307.2 307.2,283.064 177.736,153.6 "/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 700 B

View File

@ -0,0 +1 @@
<svg id="Capa_1" enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><path d="m256 0c-141.491 0-256 114.497-256 256 0 141.491 114.497 256 256 256 141.491 0 256-114.497 256-256 0-141.491-114.497-256-256-256zm189.302 271h36.188c-3.362 51.045-23.739 97.511-55.509 133.767l-15.518-15.517c-5.857-5.859-15.355-5.857-21.213 0-5.858 5.858-5.858 15.355 0 21.213l15.518 15.517c-36.256 31.771-82.723 52.148-133.768 55.51v-26.188c0-8.284-6.716-15-15-15s-15 6.716-15 15v26.188c-51.045-3.362-97.511-23.739-133.767-55.509l15.517-15.518c5.858-5.857 5.858-15.355 0-21.213-5.857-5.857-15.355-5.857-21.213 0l-15.517 15.517c-31.771-36.255-52.148-82.722-55.51-133.767h26.188c8.284 0 15-6.716 15-15s-6.716-15-15-15h-26.188c3.362-51.045 23.739-97.511 55.509-133.767l15.517 15.517c5.858 5.858 15.355 5.858 21.213 0 5.857-5.857 5.857-15.355 0-21.213l-15.517-15.517c36.256-31.771 82.723-52.148 133.768-55.51v26.188c0 8.284 6.716 15 15 15s15-6.716 15-15v-26.188c51.045 3.362 97.511 23.739 133.767 55.509l-15.517 15.518c-5.858 5.858-5.858 15.355 0 21.213 5.856 5.858 15.354 5.859 21.213 0l15.517-15.518c31.771 36.256 52.148 82.723 55.51 133.768h-36.188c-8.284 0-15 6.716-15 15s6.716 15 15 15z"/><path d="m350.651 241h-79.651v-124.302c0-8.284-6.716-15-15-15s-15 6.716-15 15v139.302c0 8.284 6.716 15 15 15h94.651c8.284 0 15-6.716 15-15s-6.715-15-15-15z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 255 35" style="enable-background:new 0 0 255 35;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FF3008;}
</style>
<path class="st0" d="M75,11.2V24h3.2c1.6,0,3.2-0.7,4.3-1.9s1.8-2.8,1.7-4.5c0-1.7-0.6-3.3-1.7-4.5c-1.1-1.2-2.7-1.9-4.4-1.9
L75,11.2L75,11.2z M78.2,7.2c5.9,0,10.4,4.6,10.4,10.4S84.1,28,78.2,28h-7c-0.3,0-0.5-0.2-0.5-0.5l0,0V7.7c0-0.3,0.2-0.5,0.5-0.5
C71.2,7.2,78.2,7.2,78.2,7.2z M103.9,24.4c2.7,0,5.1-1.6,6.2-4.2c1-2.5,0.5-5.5-1.4-7.4c-1.9-2-4.8-2.5-7.3-1.5
c-2.5,1.1-4.1,3.5-4.1,6.3C97.3,21.3,100.2,24.4,103.9,24.4 M103.9,6.7c6.2,0,11,4.9,11,10.8s-4.8,10.8-11,10.8s-11-4.9-11-10.8
S97.7,6.7,103.9,6.7 M130.1,24.4c3.7,0,6.6-3.1,6.6-6.8c0-3.8-3-6.8-6.7-6.8s-6.7,3.1-6.7,6.8c0,1.8,0.7,3.6,2,4.8
C126.6,23.7,128.3,24.4,130.1,24.4 M130.1,6.7c6.2,0,11,4.9,11,10.8s-4.8,10.8-11,10.8c-6.2,0-11-4.9-11-10.8S123.9,6.7,130.1,6.7
M155.7,11.2h-4.5v5.5h4.5c0.7,0,1.4-0.2,1.9-0.7s0.8-1.2,0.8-1.9c0-0.8-0.3-1.5-0.8-2C157.1,11.4,156.4,11.2,155.7,11.2L155.7,11.2
L155.7,11.2z M146.8,7.7c0-0.3,0.2-0.5,0.5-0.5h8.5c4,0,6.9,3,6.9,6.8c0,2.6-1.4,4.9-3.6,6.1l3.9,7.1c0.1,0.2,0.1,0.4,0,0.6
c-0.1,0.2-0.3,0.3-0.5,0.3h-3.4c-0.2,0-0.4-0.1-0.5-0.3l-3.8-7H151v6.7c0,0.3-0.2,0.5-0.5,0.5l0,0h-3.3c-0.3,0-0.5-0.2-0.5-0.5l0,0
L146.8,7.7L146.8,7.7z M174.1,11.3v12.8h3.2c1.6,0,3.2-0.7,4.3-1.9c1.1-1.2,1.8-2.8,1.7-4.5c0.1-1.7-0.6-3.3-1.7-4.5
c-1.1-1.2-2.7-1.9-4.4-1.9C177.2,11.3,174.1,11.3,174.1,11.3z M177.2,7.3c5.9,0,10.4,4.6,10.4,10.4s-4.5,10.4-10.4,10.4h-7
c-0.3,0-0.5-0.2-0.5-0.5l0,0V7.8c0-0.3,0.2-0.5,0.5-0.5H177.2L177.2,7.3z M200.9,12.3l-2.5,6.8h4.9L200.9,12.3z M197,23l-1.6,4.5
c-0.1,0.2-0.3,0.4-0.5,0.4h-3.5c-0.2,0-0.4-0.1-0.5-0.2c-0.1-0.2-0.1-0.3,0-0.5l7.5-19.7c0.1-0.2,0.3-0.4,0.5-0.3h3.9
c0.2,0,0.4,0.1,0.5,0.3l7.6,19.7c0.1,0.2,0.1,0.4,0,0.5c-0.1,0.2-0.3,0.2-0.5,0.2h-3.5c-0.2,0-0.4-0.1-0.5-0.4l-1.6-4.5L197,23
L197,23z M215,12.8c0-3.3,2.8-6.1,7.1-6.1c2.3-0.1,4.6,0.8,6.3,2.4c0.2,0.2,0.2,0.5,0,0.7l0,0l-1.9,2c-0.2,0.2-0.5,0.2-0.7,0l0,0
c-0.9-0.9-2.1-1.3-3.4-1.4c-1.7,0-3,1-3,2.2c0,3.9,10.3,1.6,10.3,9.1c0,3.8-2.8,6.6-7.7,6.6c-2.7,0-5.4-1.1-7.3-3
c-0.2-0.2-0.2-0.5,0-0.7l0,0l1.9-1.9c0.2-0.2,0.5-0.2,0.7,0l0,0c1.2,1.2,2.8,1.8,4.4,1.9c2.2,0,3.6-1.2,3.6-2.7
C225.2,18,215,20.2,215,12.8 M248.2,7.7v7.8h-8.7V7.7c0-0.3-0.2-0.5-0.5-0.5l0,0h-3.3c-0.3,0-0.5,0.2-0.5,0.5l0,0v19.7
c0,0.3,0.2,0.5,0.5,0.5h3.3c0.3,0,0.5-0.2,0.5-0.5v-7.9h8.7v7.9c0,0.3,0.2,0.5,0.5,0.5h3.3c0.3,0,0.5-0.2,0.5-0.5V7.7
c0-0.3-0.2-0.5-0.5-0.5l0,0h-3.3C248.4,7.2,248.2,7.4,248.2,7.7z M52.2,9.8c-2.3-4.2-6.8-6.9-11.6-6.9H3.8c-0.5,0-1,0.3-1.2,0.8
s-0.1,1,0.3,1.4l8,8c0.7,0.7,1.7,1.1,2.7,1.1h25.9c1.8,0,3.4,1.4,3.4,3.3c0,1.8-1.5,3.3-3.3,3.3H21.7c-0.5,0-1,0.3-1.2,0.8
s-0.1,1,0.3,1.4l8,8c0.7,0.5,1.7,0.9,2.7,0.9h8.1C50.1,31.9,58.1,20.8,52.2,9.8"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,53 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" version="1.1" width="512" height="512" x="0" y="0" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g>
<g xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767 C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z" fill="#b3121e" data-original="#000000" class=""/>
</g>
</g>
<g xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024 c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035 c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z" fill="#b3121e" data-original="#000000" class=""/>
</g>
</g>
<g xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z" fill="#b3121e" data-original="#000000" class=""/>
</g>
</g>
<g xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121 C512,113.866,510.18,107.208,507.214,101.21z" fill="#b3121e" data-original="#000000" class=""/>
</g>
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
</g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M15.997 3.985h2.191V.169C17.81.117 16.51 0 14.996 0c-3.159 0-5.323 1.987-5.323 5.639V9H6.187v4.266h3.486V24h4.274V13.267h3.345l.531-4.266h-3.877V6.062c.001-1.233.333-2.077 2.051-2.077z" fill="#b3121e" data-original="#000000"/></svg>

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" width="512" height="512" x="0" y="0" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><path d="M498.682 435.326 297.917 234.56 63.357 0H45.026l-3.743 9.511c-9.879 25.104-14.1 50.78-12.205 74.249 2.16 26.752 12.323 49.913 29.392 66.982l183.11 183.11 24.152-24.152 169.285 189.293c16.84 16.84 45.825 17.84 63.665 0 17.554-17.554 17.554-46.114 0-63.667zM156.728 291.442 13.317 434.853c-17.552 17.552-17.552 46.113 0 63.665 16.674 16.674 45.519 18.146 63.665 0l143.412-143.412-63.666-63.664zM490.253 85.249l-81.351 81.35-21.223-21.222 81.351-81.351-21.222-21.222-81.35 81.35-21.222-21.222 81.351-81.35L405.366.361l-106.11 106.11a74.903 74.903 0 0 0-21.828 48.535c-.277 4.641-1.329 9.206-3.074 13.548l68.929 68.929c4.342-1.747 8.908-2.798 13.548-3.075a74.887 74.887 0 0 0 48.535-21.827l106.11-106.109-21.223-21.223z" fill="#ffffff" data-original="#000000" class=""></path></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><g xmlns="http://www.w3.org/2000/svg"><path d="M147.682 173.862C172.542 141.158 211.844 120 256 120c36.326 0 70.479 14.146 96.167 39.833l10.606 10.606 84.853-84.852-10.606-10.606C388.668 26.629 324.381 0 256 0 187.62 0 123.333 26.629 74.98 74.98a262.026 262.026 0 00-12.622 13.557zM423.462 449.642a262.046 262.046 0 0013.558-12.622C485.371 388.667 512 324.38 512 256a258.24 258.24 0 00-4.192-46.377l-2.251-12.299H241v120h136.452a135.388 135.388 0 01-39.199 47.109zM311.602 380.208C294.511 387.831 275.655 392 256 392c-44.156 0-83.458-21.158-108.318-53.862l-85.324 85.324a261.618 261.618 0 0012.622 13.557C123.333 485.371 187.62 512 256 512c51.916 0 101.464-15.363 143.479-43.915zM131.863 311.531C124.244 294.566 120 275.77 120 256s4.244-38.566 11.863-55.531l-87.948-87.948C15.363 154.536 0 204.084 0 256s15.363 101.464 43.915 143.479z" fill="#b3212e" data-original="#000000"/></g></svg>

After

Width:  |  Height:  |  Size: 951 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="250" height="70.39" viewBox="0 0 250 70.39"><defs><style>.cls-1{fill:#ff8000;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="layer"><path class="cls-1" d="M248.67,27.84a.25.25,0,0,0,.25-.25.22.22,0,0,0-.25-.25h-.25v.5Zm-.5-.67h.54a.42.42,0,0,1,.46.46.43.43,0,0,1-.25.37h0l0,.09.29.54H249l-.25-.54h-.25v.54h-.29Zm.45,1.88a1.13,1.13,0,1,0-1.08-1.13A1.11,1.11,0,0,0,248.62,29.05Zm0-2.55a1.42,1.42,0,1,1-1.37,1.42A1.42,1.42,0,0,1,248.62,26.5Zm-6.83,24.38h0a4.52,4.52,0,0,1-.87,2.8l0,0,0,0a2.52,2.52,0,0,1-2.21.91h-3.42V47.3h3.42a2.63,2.63,0,0,1,2.21.92l0,0a4.31,4.31,0,0,1,.83,2.71Zm-6.46-17h3a2.56,2.56,0,0,1,2,.79l0,0a3.44,3.44,0,0,1,.71,2.46,3.94,3.94,0,0,1-.75,2.63v0a2.39,2.39,0,0,1-2,.84h-3V33.84Zm13.46,17v0a9.38,9.38,0,0,0-3.5-7.29l0,0,0,0a9.19,9.19,0,0,0,2.84-6.67v.13a10.67,10.67,0,0,0-2.54-7.21l0,.08a9.71,9.71,0,0,0-7.38-3.21h-9.58a.57.57,0,0,0-.59.59h0V61a.57.57,0,0,0,.59.58h10A9.89,9.89,0,0,0,246.54,58l0,0a10.35,10.35,0,0,0,2.29-7.21m-25.92.46v-24a.58.58,0,0,0-.54-.55h-6.17a.53.53,0,0,0-.58.5h0v24a4.25,4.25,0,0,1-.79,2.71,2.76,2.76,0,0,1-3.84.21c-.08,0-.12-.13-.21-.21A4.14,4.14,0,0,1,210,51.3v-24a.62.62,0,0,0-.58-.55h-6.13a.56.56,0,0,0-.58.55V51.38a11,11,0,0,0,2.58,7.88l.09.08a11.14,11.14,0,0,0,15.08-.12l-.08.08a11.46,11.46,0,0,0,2.54-8M196.82,26.75h-6a.57.57,0,0,0-.58.59h0v13h-6.08v-13a.57.57,0,0,0-.59-.59h-6a.57.57,0,0,0-.58.59h0V61a.57.57,0,0,0,.58.58h6a.57.57,0,0,0,.59-.58h0V47.42h6.08V61a.57.57,0,0,0,.58.58h6a.57.57,0,0,0,.59-.58h0V27.34A.6.6,0,0,0,196.82,26.75ZM165.49,50.88h0a4.53,4.53,0,0,1-.88,2.8l0,0,0,0a2.5,2.5,0,0,1-2.2.91h-3.42V47.3h3.42a2.62,2.62,0,0,1,2.2.92l0,0a4.26,4.26,0,0,1,.84,2.71Zm-6.46-17h3a2.56,2.56,0,0,1,2,.79l0,0a3.53,3.53,0,0,1,.71,2.46,4,4,0,0,1-.75,2.63v0a2.39,2.39,0,0,1-2,.84H159V33.84Zm13.5,17v.09a9.39,9.39,0,0,0-3.5-7.3h0l0,0a9.22,9.22,0,0,0,2.83-6.67,10.42,10.42,0,0,0-2.54-7V30A9.62,9.62,0,0,0,162,26.8h-9.55a.57.57,0,0,0-.58.58h0V61a.57.57,0,0,0,.58.58h10A9.89,9.89,0,0,0,170.28,58l0,0a10.4,10.4,0,0,0,2.29-7.21m-25.92.46v-24a.62.62,0,0,0-.59-.55H139.9a.57.57,0,0,0-.59.55v24a4.27,4.27,0,0,1-.83,2.75,2.7,2.7,0,0,1-3.79.17c-.08,0-.13-.13-.21-.21a4.14,4.14,0,0,1-.79-2.67v-24a.55.55,0,0,0-.54-.55H127a.53.53,0,0,0-.58.5h0v24A10.91,10.91,0,0,0,129,59.18a10.19,10.19,0,0,0,7.5,3h.08a10.16,10.16,0,0,0,7.51-3,11.17,11.17,0,0,0,2.54-7.88M114.06,40.38h0a2.93,2.93,0,0,1-2.37,1h-2.92V33.8h2.92a3.12,3.12,0,0,1,2.37,1v0a3.91,3.91,0,0,1,.92,2.66v0A4,4,0,0,1,114.06,40.38Zm3.71,6.21h0a12.41,12.41,0,0,0,1.71-1.5l0,0a11.15,11.15,0,0,0,2.71-7.62v-.09a10.93,10.93,0,0,0-2.8-7.46l.13.13a10,10,0,0,0-7.21-3.38h-10a.57.57,0,0,0-.59.59h0V61a.57.57,0,0,0,.59.58h6a.57.57,0,0,0,.59-.58h0V48.55H111l3.79,12.71a.59.59,0,0,0,.58.42h6.34a.62.62,0,0,0,.5-.25.64.64,0,0,0,0-.54l-4.42-14.3M94.43,29.13a10.16,10.16,0,0,0-7.5-3h0a10.1,10.1,0,0,0-7.5,3l.08-.08A11.09,11.09,0,0,0,76.76,37V51.3a10.9,10.9,0,0,0,2.59,7.92,10.17,10.17,0,0,0,7.5,3H87a10.08,10.08,0,0,0,7.5-3,11,11,0,0,0,2.59-8V43.42a.61.61,0,0,0-.63-.58H87.6a.61.61,0,0,0-.63.58V49.3a.67.67,0,0,0,.63.62H90v1.34a4.64,4.64,0,0,1-.84,2.83l0,0a2.47,2.47,0,0,1-2.16,1h0a2.4,2.4,0,0,1-2.16-.92A4.19,4.19,0,0,1,84,51.3V37.05a4.49,4.49,0,0,1,.92-2.88,2.5,2.5,0,0,1,2.17-1h0a2.4,2.4,0,0,1,2.16.92l0,0A4.33,4.33,0,0,1,90,37v1.33a.62.62,0,0,0,.58.54h6a.56.56,0,0,0,.58-.54V37a11.2,11.2,0,0,0-2.71-7.88h0m-35.05-8a1.11,1.11,0,0,1-.25-.58h0a105.27,105.27,0,0,0-1.66-12A2,2,0,0,0,55.8,7l-5.75-.71h-.17a1.22,1.22,0,0,0-1.21,1.21v2a.1.1,0,0,1-.08.09h0A80.61,80.61,0,0,0,37,.88,5.09,5.09,0,0,0,34.13,0h0A5,5,0,0,0,31.3.88C11.5,13.09.58,33,.17,34.09a1.79,1.79,0,0,0-.17.83,2,2,0,0,0,1.5,1.92l5.71,1.08a2,2,0,0,1,1.42,1.67c0,1,1.12,23.5,2.5,29.34A2,2,0,0,0,13,70.39h.05c3.33-.09,6.37-.13,9.66-.17h.3a.64.64,0,0,0,.62-.63h0c-.12-2-.42-6.45-.67-11.16a1.23,1.23,0,0,0,0-.38h0a1.24,1.24,0,0,0-.58-1,6.24,6.24,0,0,1-3-5c-.29-7.87-.46-17,0-24.13a1.15,1.15,0,0,1,2.29.05v.08c-.29,4.75-.29,10.38-.21,15.92a1.36,1.36,0,0,0,2.71,0c-.08-5.59-.08-11.25.21-16a1.15,1.15,0,0,1,2.29.05v.08c-.29,4.75-.29,10.33-.21,15.84h0a1.36,1.36,0,0,0,2.71,0c-.08-5.54-.08-11.21.21-16a1.17,1.17,0,0,1,1.13-1.08A1.15,1.15,0,0,1,31.67,28v.09c-.41,6.92-.29,15.71,0,23.42v.21h0v.08A6.1,6.1,0,0,1,29,56.88a1.08,1.08,0,0,0-.5.88,53.19,53.19,0,0,0,.38,6.92c.25,2.5.42,4.25.5,5a.62.62,0,0,0,.58.54h8.67l3.25,0h0a.72.72,0,0,0,.63-.54c.75-6.88.91-10.71.91-10.71a.68.68,0,0,0-.62-.67l-3.92-.62a1.36,1.36,0,0,1-1.12-1,1.76,1.76,0,0,1,0-.63C39.3,33.26,46.84,25.5,46.84,25.5c.21-.2.38-.33.38-.33a1.44,1.44,0,0,1,.7-.25,1.25,1.25,0,0,1,1.13.75,5,5,0,0,1,.08.54c.67,7.21.34,19.46-.08,29-.33,8.12-.75,14.46-.75,14.46h0a.47.47,0,0,0,.46.46h0l6.5.12h0a2,2,0,0,0,1.92-1.46c1.37-5.83,2.41-28.33,2.5-29.34a2,2,0,0,1,1.42-1.66l5.7-1.09a2,2,0,0,0,1.5-1.91,2.85,2.85,0,0,0-.16-.84,96.25,96.25,0,0,0-8.8-12.83"/></g></g></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M12.004 5.838a6.157 6.157 0 00-6.158 6.158 6.157 6.157 0 006.158 6.158 6.157 6.157 0 006.158-6.158 6.157 6.157 0 00-6.158-6.158zm0 10.155a3.996 3.996 0 113.997-3.997 3.995 3.995 0 01-3.997 3.997z" fill="#b3121e" data-original="#000000"/><path xmlns="http://www.w3.org/2000/svg" d="M16.948.076c-2.208-.103-7.677-.098-9.887 0-1.942.091-3.655.56-5.036 1.941C-.283 4.325.012 7.435.012 11.996c0 4.668-.26 7.706 2.013 9.979 2.317 2.316 5.472 2.013 9.979 2.013 4.624 0 6.22.003 7.855-.63 2.223-.863 3.901-2.85 4.065-6.419.104-2.209.098-7.677 0-9.887-.198-4.213-2.459-6.768-6.976-6.976zm3.495 20.372c-1.513 1.513-3.612 1.378-8.468 1.378-5 0-7.005.074-8.468-1.393-1.685-1.677-1.38-4.37-1.38-8.453 0-5.525-.567-9.504 4.978-9.788 1.274-.045 1.649-.06 4.856-.06l.045.03c5.329 0 9.51-.558 9.761 4.986.057 1.265.07 1.645.07 4.847-.001 4.942.093 6.959-1.394 8.453z" fill="#b3121e" data-original="#000000"/><circle xmlns="http://www.w3.org/2000/svg" cx="18.406" cy="5.595" r="1.439" fill="#b3121e" data-original="#000000"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 516 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 397 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1 @@
<svg id="Capa_1" enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><path d="m256 245.254c46.28 0 83.932-37.647 83.932-83.921s-37.652-83.92-83.932-83.92-83.932 37.646-83.932 83.92 37.652 83.921 83.932 83.921zm0-137.845c29.738 0 53.932 24.191 53.932 53.924 0 29.734-24.193 53.925-53.932 53.925s-53.932-24.191-53.932-53.925c0-29.733 24.194-53.924 53.932-53.924z"/><path d="m164.612 312.131c22.735 30.777 13.601 18.808 79.086 112.303 5.952 8.531 18.609 8.571 24.595.013 65.781-93.939 56.73-82.041 79.095-112.317 22.655-30.672 46.083-62.388 58.921-99.554 18.581-53.801 10.549-107.034-22.614-149.894-.001 0-.001-.001-.002-.001-30.378-39.249-78.114-62.681-127.693-62.681s-97.315 23.432-127.694 62.683c-33.163 42.86-41.195 96.094-22.613 149.895 12.836 37.165 36.264 68.881 58.919 99.553zm-12.58-231.092c24.738-31.961 63.605-51.043 103.968-51.043s79.23 19.082 103.968 51.043l-.002-.001c26.767 34.592 33.153 77.83 17.985 121.748-11.339 32.828-33.38 62.667-54.695 91.524-16.596 22.467-11.629 15.595-67.256 95.333-55.569-79.658-50.665-72.873-67.256-95.333-21.315-28.857-43.356-58.697-54.695-91.524-15.168-43.919-8.782-87.156 17.983-121.747z"/><path d="m176.932 377.167c-4.424-7.002-13.688-9.095-20.692-4.67l-42.65 26.937c-9.304 5.876-9.313 19.478 0 25.36l134.4 84.888c4.893 3.091 11.129 3.09 16.021 0l134.4-84.888c9.305-5.876 9.313-19.478 0-25.36l-42.65-26.937c-7.006-4.424-16.269-2.332-20.692 4.67-4.425 7.003-2.333 16.266 4.671 20.69l22.574 14.257-106.314 67.148-106.313-67.148 22.574-14.257c7.004-4.423 9.095-13.686 4.671-20.69z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" version="1.1" width="512" height="512" x="0" y="0" viewBox="0 0 512.009 512.009" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g>
<g xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M508.625,247.801L508.625,247.801L392.262,131.437c-4.18-4.881-11.526-5.45-16.407-1.269 c-4.881,4.18-5.45,11.526-1.269,16.407c0.39,0.455,0.814,0.88,1.269,1.269l96.465,96.582H11.636C5.21,244.426,0,249.636,0,256.063 s5.21,11.636,11.636,11.636H472.32l-96.465,96.465c-4.881,4.18-5.45,11.526-1.269,16.407s11.526,5.45,16.407,1.269 c0.455-0.39,0.88-0.814,1.269-1.269l116.364-116.364C513.137,259.67,513.137,252.34,508.625,247.801z" fill="#ffffff" data-original="#000000" class=""/>
</g>
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
</g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg id="Capa_1" enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g><path d="m372.21 0h-232.42c-26.95 0-48.79 21.802-48.79 48.79v414.42c0 26.903 21.887 48.79 48.79 48.79h232.42c26.903 0 48.79-21.887 48.79-48.79 0-6.708 0-407.662 0-414.42 0-26.946-21.795-48.79-48.79-48.79zm-251.21 48.79c0-10.388 8.412-18.79 18.79-18.79h232.42c10.311 0 18.79 8.336 18.79 18.79v11.21h-270zm251.21 433.21h-232.42c-10.36 0-18.79-8.43-18.79-18.79v-373.21h270v373.21c0 10.36-8.43 18.79-18.79 18.79z"/><path d="m165.999 220h60c8.284 0 15-6.716 15-15v-60c0-8.284-6.716-15-15-15h-60c-8.284 0-15 6.716-15 15v60c0 8.284 6.716 15 15 15zm15-60h30v30h-30z"/><path d="m240.999 325v-60c0-8.284-6.716-15-15-15h-60c-8.284 0-15 6.716-15 15v60c0 8.284 6.716 15 15 15h60c8.284 0 15-6.716 15-15zm-30-15h-30v-30h30z"/><path d="m345.999 250h-60c-8.284 0-15 6.716-15 15v60c0 8.284 6.716 15 15 15h60c8.284 0 15-6.716 15-15v-60c0-8.284-6.716-15-15-15zm-15 60h-30v-30h30z"/><path d="m345.999 130h-60c-8.284 0-15 6.716-15 15v60c0 8.284 6.716 15 15 15h60c8.284 0 15-6.716 15-15v-60c0-8.284-6.716-15-15-15zm-15 60h-30v-30h30z"/><path d="m277.608 422h-43.217c-8.284 0-15 6.716-15 15s6.716 15 15 15h43.217c8.284 0 15-6.716 15-15s-6.715-15-15-15z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" version="1.1" width="512" height="512" x="0" y="0" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g>
<g xmlns="http://www.w3.org/2000/svg">
<g>
<polygon points="512,197.816 325.961,185.585 255.898,9.569 185.835,185.585 0,197.816 142.534,318.842 95.762,502.431 255.898,401.21 416.035,502.431 369.263,318.842 " fill="#b3121e" data-original="#000000"/>
</g>
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
<g xmlns="http://www.w3.org/2000/svg">
</g>
</g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><path d="M480.32 128.39c-29.22 0-56.18-9.68-77.83-26.01-24.83-18.72-42.67-46.18-48.97-77.83A129.78 129.78 0 01351.04.39h-83.47v228.08l-.1 124.93c0 33.4-21.75 61.72-51.9 71.68a75.905 75.905 0 01-28.04 3.72c-12.56-.69-24.33-4.48-34.56-10.6-21.77-13.02-36.53-36.64-36.93-63.66-.63-42.23 33.51-76.66 75.71-76.66 8.33 0 16.33 1.36 23.82 3.83v-84.75c-7.9-1.17-15.94-1.78-24.07-1.78-46.19 0-89.39 19.2-120.27 53.79-23.34 26.14-37.34 59.49-39.5 94.46-2.83 45.94 13.98 89.61 46.58 121.83 4.79 4.73 9.82 9.12 15.08 13.17 27.95 21.51 62.12 33.17 98.11 33.17 8.13 0 16.17-.6 24.07-1.77 33.62-4.98 64.64-20.37 89.12-44.57 30.08-29.73 46.7-69.2 46.88-111.21l-.43-186.56a210.864 210.864 0 0046.88 27.34c26.19 11.05 53.96 16.65 82.54 16.64v-83.1c.02.02-.22.02-.24.02z" fill="#b3121e" data-original="#000000" xmlns="http://www.w3.org/2000/svg"/></svg>

After

Width:  |  Height:  |  Size: 899 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 343.089 343.089"><g xmlns="http://www.w3.org/2000/svg"><path d="M276.034 99.628L176.769 2.452a6.793 6.793 0 00-10.449 0L67.055 99.628a7.837 7.837 0 005.225 13.584h47.02v125.91a12.018 12.018 0 0010.449 9.927h83.592c4.18 0 5.224-5.224 5.224-9.927v-125.91h52.245a7.836 7.836 0 005.224-13.584zM213.34 264.722h-83.592a7.837 7.837 0 000 15.674h83.592a7.837 7.837 0 000-15.674zM213.34 296.069h-83.592a7.837 7.837 0 000 15.674h83.592a7.837 7.837 0 000-15.674zM213.34 327.415h-83.592a7.837 7.837 0 000 15.674h83.592a7.837 7.837 0 000-15.674z" fill="#b3212e" data-original="#000000"/></g></svg>

After

Width:  |  Height:  |  Size: 662 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,23 +1,42 @@
import type { Config } from 'tailwindcss'
import type { Config } from "tailwindcss";
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors:{
'jefesRed': '#B3121E'
},
},
plugins: [require("daisyui")],
daisyui:{
themes:["night", "emerald", "cupcake", "luxury"],
daisyui: {
themes: [
"night",
{
jefes: {
primary: "#B3121E",
secondary: "#18191a",
accent: "#B3121E",
neutral: "#18191a",
"base-100": "#e7e5e4",
info: "#3abff8",
success: "#36d399",
warning: "#fbbd23",
error: "#f87272",
},
},
],
},
}
export default config
};
export default config;

View File

@ -18,17 +18,11 @@ export default function SideNav() {
<div className="flex grow flex-row justify-between space-x-2 md:flex-col md:space-x-0 md:space-y-2">
<NavLinks />
<div className="hidden h-auto w-full grow rounded-md bg-gray-50 md:block"></div>
<form
action={async () => {
'use server';
// await signOut();
}}
>
<button className="flex h-[48px] grow items-center justify-center gap-2 rounded-md bg-gray-50 p-3 text-sm font-medium hover:bg-sky-100 hover:text-blue-600 md:flex-none md:justify-start md:p-2 md:px-3">
<PowerIcon className="w-6" />
<div className="hidden md:block">Sign Out</div>
</button>
</form>
</div>
</div>
);

Binary file not shown.

View File

@ -20,7 +20,7 @@
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lucide-react": "^0.290.0",
"next": "^14.0.0",
"next": "13.5.6",
"postcss": "8.4.31",
"postgres": "^3.4.2",
"prisma": "^5.5.2",