aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/cta.js4
-rw-r--r--components/faq.js16
-rw-r--r--components/footer.js121
-rw-r--r--components/hero.js576
-rw-r--r--components/navbar.js15
-rw-r--r--components/popupWidget.js20
-rw-r--r--components/sectionTitle.js2
-rw-r--r--components/testimonials.js91
-rw-r--r--components/video.js42
9 files changed, 535 insertions, 352 deletions
diff --git a/components/cta.js b/components/cta.js
index 19fef53..1991b3c 100644
--- a/components/cta.js
+++ b/components/cta.js
@@ -10,12 +10,12 @@ const Cta = () => {
Ready to try-out Helping Hands?
</h2>
<p className="mt-2 font-medium text-white text-opacity-90 lg:text-xl">
- text here // text here // text here // text here //
+ Join us now to connect, volunteer, and make a difference!
</p>
</div>
<div className="flex-shrink-0 w-full text-center lg:w-auto">
<a
- href="https://github.com/web3templates"
+ href="https://helpinghands.com/signup"
target="_blank"
rel="noopener"
className="inline-block py-3 mx-auto text-lg font-medium text-center text-indigo-600 bg-white rounded-md px-7 lg:px-10 lg:py-5 ">
diff --git a/components/faq.js b/components/faq.js
index 83573bc..7e9fb2f 100644
--- a/components/faq.js
+++ b/components/faq.js
@@ -35,22 +35,22 @@ const Faq = () => {
const faqdata = [
{
- question: "Is this template completely free to use?",
- answer: "Yes, this template is completely free to use.",
+ question: "What is Helping Hands and how does it work?",
+ answer: " Helping Hands is a platform designed to connect volunteers with non-profit organizations. Through our user-friendly interface, volunteers can browse and sign up for various opportunities posted by organizations seeking assistance. Likewise, non-profit organizations can create accounts to post volunteer opportunities and connect with eager volunteers.",
},
{
- question: "Can I use it in a commercial project?",
- answer: "Yes, this you can.",
+ question: "What types of organizations can utilize Helping Hands?",
+ answer: "Helping Hands is open to all types of organizations, including non-profits, community groups, charities, schools, and other mission-driven entities. Whether you're a local organization serving your community or a larger non-profit with a global reach, you can benefit from our platform to connect with volunteers and expand your impact.",
},
{
- question: "What is your refund policy? ",
+ question: "As an individual, how can I get involved with Helping Hands?",
answer:
- "If you're unhappy with your purchase for any reason, email us within 90 days and we'll refund you in full, no questions asked.",
+ "There are several ways for individuals to get involved with Helping Hands. You can sign up as a volunteer on our platform, browse through the available opportunities posted by organizations, and apply to participate in projects that align with your interests and skills. Additionally, you can spread the word about Helping Hands to your friends, family, and social networks to help grow our community and make an even greater impact together.",
},
{
- question: "Do you offer technical support? ",
+ question: "How does Helping Hands ensure safety and credibility for users?",
answer:
- "No, we don't offer technical support for free downloads. Please purchase a support plan to get 6 months of support.",
+ "Ensuring the safety and credibility of organizations is paramount at Helping Hands. We conduct rigorous vetting procedures to verify the legitimacy of non-profit organizations before they can post volunteer opportunities. Additionally, our platform fosters transparency and accountability through volunteer reviews and ratings. If you have any concerns about an organization's credibility, our support team is here to assist you promptly.",
},
];
diff --git a/components/footer.js b/components/footer.js
index ea77b36..c43c69e 100644
--- a/components/footer.js
+++ b/components/footer.js
@@ -4,14 +4,12 @@ import React from "react";
import Container from "./container";
export default function Footer() {
- const navigation = [
- "Product",
- "Features",
- "Pricing",
- "Company",
- "Blog",
+ const navigation = [,
+ "About",
+ "Contact Us",
+ "Careers",
];
- const legal = ["Terms", "Privacy", "Legal"];
+ const myAccount = ["Help Center", "Terms of Service", "Privacy Policy"];
return (
<div className="relative">
<Container>
@@ -31,32 +29,21 @@ export default function Footer() {
</Link>
</div>
- <div className="max-w-md mt-4 text-gray-500 dark:text-gray-400">
- Helping Hands is a free landing page & marketing website
- template for startups and indie projects. Its built with
- Next.js & TailwindCSS. And its completely open-source.
- </div>
-
- <div className="mt-5">
- <a
- href="https://vercel.com/?utm_source=web3templates&utm_campaign=oss"
- target="_blank"
- rel="noopener"
- className="relative block w-44">
- <Image
- src="/img/vercel.svg"
- alt="Powered by Vercel"
- width="212"
- height="44"
- />
- </a>
+ <div className="max-w-md mt-2.5 text-gray-500 dark:text-gray-400">
+ Connect. Volunteer. Make a Difference.
</div>
+ <div className="max-w-md mt-2 text-gray-500 dark:text-gray-400">
+ Join us in our mission to connect volunteers with meaningful opportunities to make a difference. Together, we can create positive change in communities worldwide.
+ </div>
</div>
<div>
<div className="flex flex-wrap w-full -mt-2 -ml-3 lg:ml-0">
+ <div className="w-full px-4 py-2 font-bold uppercase text-indigo-500 dark:text-gray-300 hover:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-trueGray-700">
+ Company
+ </div>
{navigation.map((item, index) => (
- <Link key={index} href="/" className="w-full px-4 py-2 text-gray-500 rounded-md dark:text-gray-300 hover:text-indigo-500 focus:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-trueGray-700">
+ <Link key={index} href="/" className="w-full px-4 py-0.5 text-gray-500 rounded-md dark:text-gray-300 hover:text-indigo-500 focus:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-trueGray-700">
{item}
</Link>
))}
@@ -64,39 +51,43 @@ export default function Footer() {
</div>
<div>
<div className="flex flex-wrap w-full -mt-2 -ml-3 lg:ml-0">
- {legal.map((item, index) => (
- <Link key={index} href="/" className="w-full px-4 py-2 text-gray-500 rounded-md dark:text-gray-300 hover:text-indigo-500 focus:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-trueGray-700">
+ <div className="w-full px-4 py-2 font-bold uppercase text-indigo-500 rounded-md dark:text-gray-300 hover:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-trueGray-700">
+ Resources
+ </div>
+ {myAccount.map((item, index) => (
+ <Link key={index} href="/" className="w-full px-4 py-0.5 text-gray-500 rounded-md dark:text-gray-300 hover:text-indigo-500 focus:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-trueGray-700">
{item}
</Link>
))}
</div>
</div>
- <div className="">
- <div>Follow us</div>
- <div className="flex mt-5 space-x-5 text-gray-400 dark:text-gray-500">
+ <div className="flex flex-wrap w-full -mt-2 -ml-3 lg:ml-0">
+ <div className="w-full px-4 py-2 font-bold uppercase text-indigo-500 rounded-md dark:text-gray-300 hover:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-trueGray-700">
+ Connect With Us
+ <div className="flex mt-2.5 space-x-2 text-gray-400 dark:text-gray-500">
<a
- href="https://twitter.com/web3templates"
+ href="https://twitter.com/helpinghands"
target="_blank"
rel="noopener">
<span className="sr-only">Twitter</span>
<Twitter />
</a>
<a
- href="https://facebook.com/web3templates"
+ href="https://facebook.com/helpinghands"
target="_blank"
rel="noopener">
<span className="sr-only">Facebook</span>
<Facebook />
</a>
<a
- href="https://instagram.com/web3templates"
+ href="https://instagram.com/helpinghands"
target="_blank"
rel="noopener">
<span className="sr-only">Instagram</span>
<Instagram />
</a>
<a
- href="https://linkedin.com/"
+ href="https://linkedin.com/helpinghands"
target="_blank"
rel="noopener">
<span className="sr-only">Linkedin</span>
@@ -105,30 +96,13 @@ export default function Footer() {
</div>
</div>
</div>
-
- <div className="my-10 text-sm text-center text-gray-600 dark:text-gray-400">
- Copyright © {new Date().getFullYear()}. Made with ♥ by{" "}
- <a
- href="https://web3templates.com/"
- target="_blank"
- rel="noopener">
- Web3Templates.
- </a>{" "}
- Illustrations from{" "}
- <a
- href="https://www.glazestock.com/"
- target="_blank"
- rel="noopener ">
- Glazestock
- </a>
</div>
- </Container>
- {/* Do not remove this */}
- <Backlink />
- </div>
+ <div className="my-10 text-sm text-center text-gray-600 dark:text-gray-400">
+ Copyright Helping Hands© 2024.
+ </div>
+ </Container></div>
);
}
-
const Twitter = ({ size = 24 }) => (
<svg
xmlns="http://www.w3.org/2000/svg"
@@ -170,35 +144,4 @@ const Linkedin = ({ size = 24 }) => (
fill="currentColor">
<path d="M22.23 0H1.77C.8 0 0 .77 0 1.72v20.56C0 23.23.8 24 1.77 24h20.46c.98 0 1.77-.77 1.77-1.72V1.72C24 .77 23.2 0 22.23 0zM7.27 20.1H3.65V9.24h3.62V20.1zM5.47 7.76h-.03c-1.22 0-2-.83-2-1.87 0-1.06.8-1.87 2.05-1.87 1.24 0 2 .8 2.02 1.87 0 1.04-.78 1.87-2.05 1.87zM20.34 20.1h-3.63v-5.8c0-1.45-.52-2.45-1.83-2.45-1 0-1.6.67-1.87 1.32-.1.23-.11.55-.11.88v6.05H9.28s.05-9.82 0-10.84h3.63v1.54a3.6 3.6 0 0 1 3.26-1.8c2.39 0 4.18 1.56 4.18 4.89v6.21z" />
</svg>
-);
-
-const Backlink = () => {
- return (
- <a
- href="https://web3templates.com"
- target="_blank"
- rel="noopener"
- className="absolute flex px-3 py-1 space-x-2 text-sm font-semibold text-gray-900 bg-white border border-gray-300 rounded shadow-sm place-items-center left-5 bottom-5 dark:bg-trueGray-900 dark:border-trueGray-700 dark:text-trueGray-300">
- <svg
- width="20"
- height="20"
- viewBox="0 0 30 30"
- fill="none"
- className="w-4 h-4"
- xmlns="http://www.w3.org/2000/svg">
- <rect
- width="30"
- height="29.5385"
- rx="2.76923"
- fill="#362F78"
- />
- <path
- d="M10.14 21.94H12.24L15.44 12.18L18.64 21.94H20.74L24.88 8H22.64L19.58 18.68L16.36 8.78H14.52L11.32 18.68L8.24 8H6L10.14 21.94Z"
- fill="#F7FAFC"
- />
- </svg>
-
- <span>Web3Templates</span>
- </a>
- );
-};
+); \ No newline at end of file
diff --git a/components/hero.js b/components/hero.js
index c1e6ea3..ec4e363 100644
--- a/components/hero.js
+++ b/components/hero.js
@@ -56,22 +56,21 @@ const Hero = () => {
Used by over <span className="text-indigo-600">100+</span>{" "}
organizations worldwide
</div>
-
<div className="flex flex-wrap justify-center gap-5 mt-10 md:justify-around">
- <div className="pt-2 text-gray-400 dark:text-gray-400">
- <AmazonLogo />
- </div>
<div className="text-gray-400 dark:text-gray-400">
- <VerizonLogo />
+ <HabitatForHumanity />
+ </div>
+ <div className="pt-2 text-gray-400 dark:text-gray-400">
+ <VolunteerMatchLogo />
</div>
<div className="text-gray-400 dark:text-gray-400">
- <MicrosoftLogo />
+ <AmericanCancerSocietyLogo />
</div>
<div className="pt-1 text-gray-400 dark:text-gray-400">
- <NetflixLogo />
+ <ASPCALogo />
</div>
- <div className="pt-2 text-gray-400 dark:text-gray-400">
- <SonyLogo />
+ <div className="text-gray-400 dark:text-gray-400">
+ <AmericanRedCrossLogo />
</div>
</div>
</div>
@@ -79,109 +78,498 @@ const Hero = () => {
</>
);
}
-
-function AmazonLogo() {
+function AmericanCancerSocietyLogo() {
return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="110"
- height="33"
- fill="none"
- viewBox="0 0 110 33">
- <g fill="currentColor" clipPath="url(#clip0)">
- <path
- fillRule="evenodd"
- d="M67.776 25.783c-6.323 4.676-15.521 7.167-23.455 7.167-11.114 0-21.079-4.1-28.667-10.923-.575-.536-.077-1.264.651-.843 8.163 4.752 18.243 7.589 28.668 7.589 7.013 0 14.755-1.457 21.884-4.485 1.073-.421 1.954.729.92 1.495z"
- clipRule="evenodd"></path>
- <path
- fillRule="evenodd"
- d="M70.42 22.756c-.804-1.035-5.365-.499-7.396-.23-.613.076-.728-.46-.153-.844 3.64-2.567 9.581-1.8 10.271-.958.69.843-.192 6.822-3.603 9.658-.536.422-1.034.192-.804-.383.766-1.916 2.49-6.17 1.686-7.243z"
- clipRule="evenodd"></path>
- <path d="M63.139 3.67V1.177c0-.383.268-.613.613-.613h11.115c.345 0 .651.268.651.613v2.108c0 .345-.306.805-.843 1.571l-5.749 8.202c2.146-.038 4.408.268 6.324 1.341.421.23.536.614.575.959v2.644c0 .383-.383.805-.805.575-3.411-1.801-7.972-1.993-11.728.038-.383.192-.805-.191-.805-.575v-2.529c0-.383 0-1.073.422-1.686l6.669-9.543H63.79c-.344 0-.651-.269-.651-.614zm-40.51 15.445h-3.373c-.306-.039-.575-.269-.613-.575V1.217c0-.345.307-.614.652-.614h3.142c.345 0 .575.269.613.575V3.44h.077C23.932 1.255 25.503.22 27.573.22c2.108 0 3.45 1.035 4.369 3.22.805-2.185 2.683-3.22 4.676-3.22 1.418 0 2.95.575 3.909 1.916 1.073 1.457.843 3.565.843 5.443v10.96c0 .346-.306.614-.651.614h-3.335c-.345-.038-.613-.307-.613-.613V9.342c0-.729.077-2.568-.077-3.258-.268-1.15-.996-1.495-1.992-1.495-.805 0-1.687.537-2.032 1.418-.345.882-.306 2.338-.306 3.335v9.198c0 .345-.307.613-.652.613H28.34c-.345-.038-.613-.307-.613-.613V9.342c0-1.917.307-4.791-2.07-4.791-2.414 0-2.337 2.76-2.337 4.79v9.199c-.038.306-.307.575-.69.575zM85.099.22c5.021 0 7.742 4.293 7.742 9.773 0 5.289-2.99 9.505-7.741 9.505-4.906 0-7.589-4.293-7.589-9.658C77.473 4.436 80.194.22 85.1.22zm0 3.564c-2.49 0-2.644 3.411-2.644 5.52 0 2.107-.038 6.63 2.606 6.63 2.606 0 2.76-3.641 2.76-5.864 0-1.457-.077-3.22-.499-4.6-.383-1.226-1.15-1.686-2.222-1.686zm14.22 15.33h-3.373c-.345-.038-.614-.306-.614-.613V1.14a.662.662 0 01.652-.575h3.143c.306 0 .536.23.613.498v2.645h.077c.958-2.376 2.261-3.488 4.599-3.488 1.494 0 2.989.537 3.947 2.031.882 1.38.882 3.718.882 5.404v10.923c-.039.307-.307.537-.652.537h-3.373c-.306-.039-.574-.269-.613-.537V9.15c0-1.916.23-4.676-2.108-4.676-.804 0-1.571.537-1.954 1.38-.46 1.073-.537 2.108-.537 3.296V18.5a.702.702 0 01-.69.614zm-41.622-.038a.693.693 0 01-.805.077c-1.111-.92-1.341-1.38-1.955-2.261-1.84 1.878-3.18 2.453-5.557 2.453-2.836 0-5.059-1.764-5.059-5.251 0-2.76 1.495-4.6 3.603-5.519 1.84-.805 4.407-.958 6.362-1.188v-.422c0-.804.076-1.763-.422-2.452-.421-.614-1.188-.882-1.878-.882-1.303 0-2.453.652-2.72 2.031-.078.307-.27.614-.576.614l-3.257-.345c-.269-.077-.575-.269-.499-.69.767-3.986 4.331-5.174 7.55-5.174 1.648 0 3.795.421 5.098 1.686 1.648 1.533 1.495 3.603 1.495 5.826v5.25c0 1.571.651 2.261 1.264 3.143.23.307.268.69 0 .881-.728.575-1.954 1.648-2.644 2.223zm-3.411-8.24v-.728c-2.453 0-5.02.537-5.02 3.411 0 1.456.766 2.453 2.069 2.453.958 0 1.801-.575 2.338-1.533.651-1.188.613-2.3.613-3.603zm-41.698 8.317c-1.112-.92-1.342-1.38-1.955-2.261-1.84 1.878-3.181 2.453-5.557 2.453-2.836 0-5.06-1.764-5.06-5.251 0-2.76 1.496-4.6 3.603-5.519 1.84-.805 4.408-.958 6.362-1.188v-.422c0-.804.077-1.763-.421-2.452-.422-.614-1.188-.882-1.878-.882-1.303 0-2.453.652-2.721 2.031-.077.307-.268.614-.575.614L1.128 5.93C.86 5.854.553 5.662.63 5.24 1.397 1.255 4.96.067 8.18.067c1.648 0 3.794.421 5.098 1.686 1.647 1.533 1.494 3.603 1.494 5.826v5.25c0 1.571.652 2.261 1.265 3.143.23.307.268.69 0 .881-.728.575-1.955 1.648-2.644 2.223a.693.693 0 01-.805.077zm-2.568-8.317v-.728c-2.453 0-5.02.537-5.02 3.411 0 1.456.766 2.453 2.069 2.453.958 0 1.801-.575 2.338-1.533.651-1.188.613-2.3.613-3.603z"></path>
- </g>
- <defs>
- <clipPath id="clip0">
- <path fill="#fff" d="M0 0H109.272V33H0z"></path>
- </clipPath>
- </defs>
- </svg>
+ <svg
+ xmlns="http://www.w3.org/2000/svg"
+ width="70"
+ height="40"
+ fill="currentColor"
+ viewBox="0 0 1380 777">
+
+ <defs>
+ <style>{".cls-1{fill:currentColor;}.cls-2{fill:currentColor;}"}</style>
+ </defs>
+ <g id="Layer_1-2">
+ <g>
+ <g>
+ <path
+ className="cls-2"
+ d="M330.67,104.28h49.71l59.97,175.6h-42.68l-13.51-43.22h-56.73l-13.51,43.22h-42.14l58.89-175.6Zm42.14,97.26l-17.83-56.73-17.29,56.73h35.12Z"
+ />
+ <path
+ className="cls-2"
+ d="M592.18,182.08c-12.97,0-23.23,9.19-23.23,25.39v72.94h-38.36v-72.94c0-16.21-7.02-25.39-19.45-25.39s-23.23,9.19-23.23,25.39v72.94h-38.36V149.67h38.36v15.13c9.19-12.43,22.69-18.91,36.74-18.91,17.29,0,30.26,7.56,37.28,21.61,9.73-14.05,25.39-21.61,43.77-21.61,27.56,0,44.31,19.45,44.31,53.49v80.51h-38.36v-72.94c0-15.67-7.02-24.85-19.45-24.85Z"
+ />
+ <path
+ className="cls-2"
+ d="M664.58,215.04c0-45.39,32.96-68.62,65.92-68.62s66.46,23.77,66.46,68.62v11.89h-94.55c3.78,15.67,16.21,22.69,29.18,22.69,9.73,0,15.13-2.16,18.91-7.02h44.31c-11.35,28.1-38.36,41.06-63.22,41.06-32.96,0-67-23.23-67-68.62Zm92.39-14.59c-3.24-17.83-15.67-23.77-26.48-23.77-12.97,0-23.77,7.56-27.56,23.77h54.03Z"
+ />
+ <path
+ className="cls-2"
+ d="M812.09,149.67h38.36v15.67c9.73-12.43,23.77-17.83,39.44-17.83v36.74c-28.64-5.94-39.44,7.02-39.44,23.23v72.94h-38.36V149.67Z"
+ />
+ <path
+ className="cls-2"
+ d="M923.93,97.8c12.43,0,21.61,8.65,21.61,21.61s-9.19,21.61-21.61,21.61-21.61-8.65-21.61-21.61,8.65-21.61,21.61-21.61Zm-19.45,51.87h38.36v130.76h-38.36V149.67Z"
+ />
+ <path
+ className="cls-2"
+ d="M957.97,215.04c0-45.39,32.96-68.62,66.46-68.62,28.1,0,56.19,16.21,64.84,50.25h-41.6c-4.86-10.27-13.51-14.59-23.23-14.59-16.21,0-26.48,11.89-26.48,32.96s10.27,32.96,26.48,32.96c10.81,0,18.37-5.4,23.23-17.29h41.6c-8.1,35.66-36.2,52.95-64.84,52.95-33.5,0-66.46-23.23-66.46-68.62Z"
+ />
+ <path
+ className="cls-2"
+ d="M1098.45,215.04c0-45.39,29.72-68.62,59.97-68.62,17.29,0,30.8,5.94,40.52,16.75v-13.51h38.36v130.76h-38.36v-13.51c-9.73,10.81-23.23,16.75-40.52,16.75-30.26,0-59.97-23.23-59.97-68.62Zm70.24,32.96c18.37,0,30.26-11.89,30.26-32.96s-11.89-32.96-30.26-32.96-30.26,11.89-30.26,32.96,11.89,32.96,30.26,32.96Z"
+ />
+ <path
+ className="cls-2"
+ d="M1321.06,182.08c-15.13,0-25.93,9.19-25.93,25.39v72.94h-38.36V149.67h38.36v15.67c9.73-12.43,23.77-18.91,39.44-18.91,28.64,0,46.47,19.45,46.47,53.49v80.51h-38.36v-72.94c.54-16.21-7.56-25.39-21.61-25.39Z"
+ />
+ </g>
+ <g>
+ <path
+ className="cls-2"
+ d="M269.07,408.48c0-55.11,38.9-91.31,87.53-91.31,41.6,0,76.18,25.93,85.37,67.54h-43.22c-7.02-17.83-21.61-29.18-42.68-29.18-28.64,0-45.93,21.61-45.93,52.95s17.29,52.95,45.93,52.95c21.61,0,36.2-12.43,42.68-31.88h42.68c-8.65,43.22-43.22,70.24-85.37,70.24-48.09,.54-86.99-35.66-86.99-91.31Z"
+ />
+ <path
+ className="cls-2"
+ d="M452.78,431.17c0-45.39,29.72-68.62,59.97-68.62,17.29,0,30.8,5.94,40.52,16.75v-13.51h38.36v130.76h-38.36v-13.51c-9.73,10.81-23.23,16.75-40.52,16.75-30.26,.54-59.97-23.23-59.97-68.62Zm70.24,33.5c18.37,0,30.26-11.89,30.26-32.96s-11.89-32.96-30.26-32.96-30.26,11.89-30.26,32.96c-.54,20.53,11.89,32.96,30.26,32.96Z"
+ />
+ <path
+ className="cls-2"
+ d="M675.39,398.21c-15.13,0-25.93,9.19-25.93,25.39v72.94h-38.36v-130.76h38.36v15.67c9.73-12.43,23.77-18.91,39.44-18.91,28.64,0,46.47,19.45,46.47,53.49v80.51h-38.36v-72.94c.54-16.21-8.1-25.39-21.61-25.39Z"
+ />
+ <path
+ className="cls-2"
+ d="M750.49,431.17c0-45.39,32.96-68.62,66.46-68.62,28.1,0,56.19,16.21,64.84,50.25h-41.6c-4.86-10.27-13.51-14.59-23.23-14.59-16.21,0-26.48,11.89-26.48,32.96s10.27,32.96,26.48,32.96c10.81,0,18.37-5.4,23.23-17.29h41.6c-8.1,35.66-36.2,52.95-64.84,52.95-34.04,.54-66.46-23.23-66.46-68.62Z"
+ />
+ <path
+ className="cls-2"
+ d="M890.97,431.17c0-45.39,32.96-68.62,65.92-68.62s66.46,23.77,66.46,68.62v11.89h-94.55c3.78,15.67,16.21,22.69,29.18,22.69,9.73,0,15.13-2.16,18.91-7.02h44.31c-11.35,28.1-38.36,41.06-63.22,41.06-32.42,.54-67-23.23-67-68.62Zm92.93-14.59c-3.24-17.83-15.67-23.77-26.48-23.77-12.97,0-23.77,7.56-27.56,23.77h54.03Z"
+ />
+ <path
+ className="cls-2"
+ d="M1039.02,365.79h38.36v15.67c9.73-12.43,23.77-17.83,39.44-17.83v36.74c-28.64-5.94-39.44,7.02-39.44,23.23v72.94h-38.36v-130.76Z"
+ />
+ </g>
+ <path
+ className="cls-2"
+ d="M436.03,651.07c0-45.39,34.58-68.62,70.24-68.62s70.24,23.77,70.24,68.62-34.58,68.62-70.24,68.62-70.24-23.23-70.24-68.62Zm69.7,32.96c18.37,0,30.26-11.89,30.26-32.96s-11.89-32.96-30.26-32.96-30.26,11.89-30.26,32.96,11.89,32.96,30.26,32.96Z"
+ />
+ <path
+ className="cls-2"
+ d="M586.24,651.07c0-45.39,32.96-68.62,66.46-68.62,28.1,0,56.19,16.21,64.84,50.25h-41.6c-4.86-10.27-13.51-14.59-23.23-14.59-16.21,0-26.48,11.89-26.48,32.96s10.27,32.96,26.48,32.96c10.81,0,18.37-5.4,23.23-17.29h41.6c-8.1,35.66-36.2,52.95-64.84,52.95-33.5,0-66.46-23.23-66.46-68.62Z"
+ />
+ <path
+ className="cls-2"
+ d="M751.57,533.83c12.43,0,21.61,8.65,21.61,21.61s-9.19,21.61-21.61,21.61-21.61-8.65-21.61-21.61,8.64-21.61,21.61-21.61Zm-19.45,51.87h38.36v130.76h-38.36v-130.76Z"
+ />
+ <path
+ className="cls-2"
+ d="M785.07,651.07c0-45.39,32.96-68.62,65.92-68.62s66.46,23.77,66.46,68.62v11.89h-94.55c3.78,15.67,16.21,22.69,29.18,22.69,9.73,0,15.13-2.16,18.91-7.02h44.31c-11.35,28.1-38.36,41.06-63.22,41.06-32.96,0-67-23.23-67-68.62Zm92.93-14.59c-3.24-17.83-15.67-23.77-26.48-23.77-12.97,0-23.77,7.56-27.56,23.77h54.03Z"
+ />
+ <path
+ className="cls-2"
+ d="M1065.49,699.7l-49.71-114.01h41.6l28.1,67,25.93-67h39.44l-72.4,178.3h-39.44l26.48-64.3Z"
+ />
+ <path
+ className="cls-2"
+ d="M378.22,612.17l-31.34-7.02c-15.13-3.78-16.75-10.27-16.75-15.67,0-10.27,9.19-16.75,23.77-16.75,18.37,0,25.39,9.73,28.64,18.37l.54,2.16h41.6l-.54-3.78c-6.48-32.42-32.42-51.87-70.24-51.87s-64.84,23.23-64.84,55.65c0,25.93,15.67,42.68,45.93,49.71l30.8,7.02c15.13,3.24,18.37,9.19,18.37,16.21,0,11.35-9.73,18.37-25.39,18.37-11.35,0-25.93-3.24-30.8-19.99l-.54-2.16h-42.68l.54,3.78c5.94,34.04,34.04,54.03,74.02,54.03s66.46-22.69,66.46-56.19c0-26.48-16.75-44.85-47.55-51.87Z"
+ />
+ <path
+ className="cls-2"
+ d="M988.23,682.41c-4.86,0-7.02-3.24-7.02-8.1v-54.03h27.56v-34.04h-27.56v-46.47l-38.36,14.05v32.42h-19.45v34.04h19.45v54.03c0,24.85,19.99,42.14,45.39,42.14h23.77v-34.04h-23.77Z"
+ />
+ <g>
+ <path
+ className="cls-1"
+ d="M145.88,483.58l-77.8,60.51c-14.05,10.81-16.75,31.34-5.4,45.39v.54l77.8-61.06c14.05-10.81,16.75-30.8,5.4-45.39h0Z"
+ />
+ <path
+ className="cls-1"
+ d="M77.8,593.8c-14.05,11.35-16.75,31.88-5.4,45.93h0c1.08,1.62,2.7,3.24,4.32,4.32,1.08-5.94,4.32-10.81,9.19-15.13l40.52-31.88c14.05-11.35,16.75-31.88,5.4-45.93l-54.03,42.68Z"
+ />
+ <path
+ className="cls-1"
+ d="M202.62,403.61c0-22.69-18.37-41.06-41.06-41.06h-31.34l12.97,16.21-12.97,16.21h30.8c4.32,0,8.65,3.24,8.65,8.1,0,2.7-1.08,4.86-2.7,6.48l-108.6,84.83c-14.05,11.35-16.75,31.88-5.4,45.93h0l134-104.82c9.73-7.02,15.67-18.91,15.67-31.88Z"
+ />
+ <path
+ className="cls-1"
+ d="M16.75,436.03l48.09,37.82,26.48-21.07-55.65-43.22c-1.62-1.62-3.24-3.78-2.7-6.48,0-4.32,3.78-8.1,8.65-8.1h30.8l-12.97-16.21,12.97-16.21h-31.34c-22.69,0-41.06,18.37-41.06,41.06,.54,12.97,7.02,24.85,16.75,32.42Z"
+ />
+ <polygon
+ className="cls-2"
+ points="101.58 0 82.67 32.96 82.67 430.09 101.58 445.22 121.03 430.09 121.03 32.96 101.58 0"
+ />
+ <path
+ className="cls-2"
+ d="M114.01,680.79l6.48-63.76-28.1,22.15c-6.48,4.86-9.19,12.97-8.1,19.99l3.78,22.15c-4.86,3.78-8.1,10.27-8.1,16.75,0,11.89,9.73,21.61,21.61,21.61s21.61-9.73,21.61-21.61c0-7.02-3.78-13.51-9.19-17.29Z"
+ />
+ </g>
+ <path
+ className="cls-2"
+ d="M1183.62,536.19c3.27,1.88,5.83,4.48,7.68,7.78,1.85,3.3,2.77,7.02,2.77,11.14s-.92,7.85-2.77,11.19c-1.85,3.34-4.41,5.95-7.68,7.84-3.27,1.88-6.97,2.83-11.09,2.83s-7.93-.94-11.19-2.83c-3.27-1.88-5.83-4.49-7.68-7.84-1.85-3.34-2.77-7.07-2.77-11.19s.92-7.84,2.77-11.14c1.85-3.3,4.41-5.9,7.68-7.78,3.27-1.88,7-2.83,11.19-2.83s7.82,.94,11.09,2.83Zm1.33,31.61c3.16-3.27,4.74-7.5,4.74-12.69s-1.58-9.42-4.74-12.69c-3.16-3.27-7.3-4.9-12.42-4.9s-9.33,1.64-12.42,4.9c-3.09,3.27-4.64,7.5-4.64,12.69s1.55,9.42,4.64,12.69c3.09,3.27,7.23,4.9,12.42,4.9s9.26-1.63,12.42-4.9Zm-4.16-12.85c-.89,1.17-2.12,2.01-3.68,2.51l5.97,8.85-6.72,.11-5.12-8.53h-1.81v8.53h-5.54v-22.92h10.23c2.42,0,4.35,.64,5.81,1.92,1.46,1.28,2.19,3.02,2.19,5.22,0,1.71-.45,3.14-1.33,4.32Zm-11.35-1.65h4.37c.78,0,1.44-.21,1.97-.64,.53-.43,.8-1.03,.8-1.81s-.27-1.37-.8-1.76c-.53-.39-1.19-.59-1.97-.59h-4.37v4.8Z"
+ />
+ </g>
+ </g>
+ </svg>
);
}
-
-function MicrosoftLogo() {
+function AmericanRedCrossLogo() {
return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="150"
- height="31"
- fill="none"
- viewBox="0 0 150 31">
- <path
- fill="currentColor"
- d="M150 14.514v-2.647h-3.295V7.75l-.11.034-3.095.945-.061.019v3.118h-4.884V10.13c0-.81.181-1.428.538-1.841.355-.408.863-.615 1.51-.615.465 0 .947.11 1.431.325l.122.054V5.265l-.057-.021c-.452-.162-1.068-.244-1.83-.244-.96 0-1.834.209-2.596.622a4.428 4.428 0 00-1.78 1.757c-.419.751-.631 1.618-.631 2.578v1.91h-2.294v2.647h2.294v11.153h3.293V14.514h4.884v7.088c0 2.919 1.38 4.398 4.1 4.398a6.78 6.78 0 001.4-.155c.488-.105.822-.21 1.018-.322l.043-.026v-2.672l-.134.089c-.204.13-.428.227-.662.288a2.514 2.514 0 01-.65.11c-.638 0-1.11-.171-1.402-.51-.296-.34-.446-.938-.446-1.773v-6.515H150zm-24.387 8.799c-1.195 0-2.137-.396-2.801-1.175-.669-.783-1.007-1.9-1.007-3.317 0-1.464.338-2.61 1.007-3.406.664-.791 1.598-1.193 2.775-1.193 1.142 0 2.05.383 2.702 1.14.654.762.986 1.898.986 3.379 0 1.498-.312 2.65-.928 3.42-.612.764-1.531 1.152-2.734 1.152zm.147-11.779c-2.28 0-4.092.667-5.383 1.982-1.291 1.315-1.945 3.136-1.945 5.41 0 2.161.638 3.9 1.898 5.165 1.26 1.267 2.975 1.908 5.096 1.908 2.21 0 3.986-.676 5.277-2.009 1.29-1.332 1.945-3.135 1.945-5.356 0-2.195-.614-3.946-1.825-5.204-1.211-1.258-2.915-1.896-5.063-1.896zm-12.638 0c-1.551 0-2.834.396-3.815 1.177-.986.785-1.486 1.815-1.486 3.062 0 .647.108 1.223.32 1.711.214.49.545.921.985 1.283.436.359 1.11.735 2.001 1.117.75.308 1.31.569 1.665.774.347.201.594.404.733.6.135.193.204.457.204.783 0 .927-.696 1.378-2.128 1.378-.53 0-1.136-.11-1.8-.329a6.76 6.76 0 01-1.844-.932l-.136-.098v3.164l.05.023c.466.215 1.053.396 1.746.538a9.428 9.428 0 001.864.215c1.684 0 3.04-.398 4.028-1.183.996-.79 1.5-1.845 1.5-3.135 0-.93-.271-1.728-.807-2.37-.531-.639-1.454-1.225-2.74-1.743-1.026-.41-1.683-.751-1.954-1.013-.261-.253-.394-.61-.394-1.063 0-.401.164-.723.5-.983.339-.262.81-.395 1.401-.395.55 0 1.11.087 1.669.256.517.15 1.008.378 1.457.674l.134.092v-3.001l-.051-.022c-.378-.162-.875-.3-1.48-.412a9.053 9.053 0 00-1.622-.168zM99.236 23.313c-1.195 0-2.138-.396-2.802-1.175-.668-.783-1.006-1.899-1.006-3.317 0-1.464.338-2.61 1.007-3.406.664-.791 1.597-1.193 2.774-1.193 1.142 0 2.05.383 2.702 1.14.655.762.987 1.898.987 3.379 0 1.498-.313 2.65-.929 3.42-.611.764-1.53 1.152-2.733 1.152zm.147-11.779c-2.281 0-4.093.667-5.384 1.982-1.29 1.315-1.945 3.136-1.945 5.41 0 2.162.64 3.9 1.9 5.165C95.213 25.358 96.927 26 99.048 26c2.21 0 3.986-.676 5.277-2.009 1.29-1.332 1.945-3.135 1.945-5.356 0-2.195-.614-3.946-1.825-5.204-1.212-1.258-2.916-1.896-5.063-1.896l.001-.001zm-12.328 2.723v-2.39h-3.253v13.8h3.253v-7.06c0-1.2.273-2.186.811-2.93.531-.737 1.24-1.11 2.104-1.11.293 0 .622.049.978.144.353.095.608.198.759.306l.136.099v-3.273l-.052-.022c-.303-.129-.732-.194-1.274-.194-.818 0-1.55.263-2.176.779-.55.453-.947 1.075-1.251 1.85h-.035v.001zm-9.079-2.723c-1.492 0-2.823.32-3.955.95a6.4 6.4 0 00-2.61 2.676c-.594 1.143-.896 2.478-.896 3.966 0 1.304.293 2.5.871 3.555a6.114 6.114 0 002.435 2.456c1.035.573 2.231.863 3.556.863 1.546 0 2.866-.309 3.924-.917l.043-.024v-2.974l-.137.1a6.12 6.12 0 01-1.591.826c-.575.2-1.1.302-1.56.302-1.276 0-2.3-.399-3.044-1.185-.746-.786-1.123-1.891-1.123-3.281 0-1.4.394-2.533 1.17-3.369.775-.833 1.802-1.256 3.052-1.256 1.069 0 2.11.361 3.096 1.075l.137.098v-3.133l-.044-.025c-.371-.207-.877-.378-1.505-.508a9.005 9.005 0 00-1.819-.195zm-9.701.333h-3.253v13.8h3.253v-13.8zm-1.593-5.879c-.536 0-1.003.182-1.386.542a1.786 1.786 0 00-.581 1.354c0 .529.193.975.575 1.327.379.351.847.529 1.392.529a2.01 2.01 0 001.398-.528 1.729 1.729 0 00.582-1.328c0-.518-.19-.969-.566-1.339-.375-.37-.851-.557-1.414-.557zm-8.117 4.86v14.819h3.32V6.41H57.29l-5.84 14.302L45.782 6.41H41v19.256h3.12v-14.82h.107l5.985 14.82h2.354l5.892-14.818h.107z"></path>
- <path
- fill="currentColor"
- fillRule="evenodd"
- d="M15 14H0V0h15v14zm17 0H17V0h15v14zM15 31H0V17h15v14zm17 0H17V17h15v14z"
- clipRule="evenodd"></path>
- </svg>
+ <svg
+ xmlns="http://www.w3.org/2000/svg"
+ width="128.7"
+ height="44.661"
+ viewBox="0 0 216.698 74.661"
+ >
+ <defs>
+ <radialGradient
+ id="b"
+ cx="0"
+ cy="0"
+ r="1"
+ fx="-0.004"
+ fy="-0.516"
+ gradientTransform="matrix(13.674 -1.4368 -1.4435 -13.737 51.144 1000.6)"
+ gradientUnits="userSpaceOnUse"
+ >
+ <stop offset="0" stopColor="#fff"></stop>
+ <stop offset="0.059" stopColor="#fff"></stop>
+ <stop offset="0.549" stopColor="#fff"></stop>
+ <stop offset="0.672" stopColor="#f1f1f1"></stop>
+ <stop offset="0.847" stopColor="#e4e4e4"></stop>
+ <stop offset="0.969" stopColor="#cac9ca"></stop>
+ <stop offset="0.999" stopColor="#fff"></stop>
+ <stop offset="1" stopColor="#fff"></stop>
+ </radialGradient>
+ </defs>
+ <g
+ clipPath="url(#p)"
+ opacity="0.8"
+ transform="matrix(1.25 0 0 -1.25 7.288 1287.3) translate(-79.039 -967.29) scale(1.9688)"
+ >
+ <g clipPath="url(#o)">
+ <g clipPath="url(#n)">
+ <path
+ fill="url(#b)"
+ d="M50.98 1013.9c-6.809-.044-12.64-5.201-13.368-12.132-.782-7.441 4.615-14.108 12.055-14.89 7.442-.781 14.111 4.617 14.891 12.057.784 7.442-4.618 14.108-12.06 14.89-.45.047-.896.072-1.34.075h-.178z"
+ ></path>
+ </g>
+ </g>
+ </g>
+ <g
+ fill="currentColor"
+ clipPath="url(#h)"
+ transform="matrix(1.253 0 0 -1.25 7.288 1287.3) translate(-79.039 -967.29) scale(1.9688)"
+ >
+ <g clipPath="url(#g)">
+ <g clipPath="url(#f)">
+ <path d="M48.055 1009.5v-6.068h-6.067v-6.065h6.067v-6.068h6.064v6.068h6.069v6.064l-6.069.001.002 6.068h-6.066z"></path>
+ </g>
+ </g>
+ </g>
+ <path
+ fill="currentColor"
+ d="M75.217 1009.395l-2.98-7.805h2.482l.37 1.168h2.83s.335-1.07.364-1.168h2.484c-.076.2-2.873 7.708-2.909 7.805h-2.64zm28.582-.01v-1.509h2.269v1.51h-2.269zm6.173-1.8c-.977 0-1.775-.345-2.309-.9-.505-.52-.795-1.33-.795-2.182 0-1.852 1.166-3.125 2.97-3.125 1.276 0 2.035.622 2.36.955.252.252.415.533.55.815l-1.64.899c-.118-.376-.395-1.002-1.08-1.002-.484 0-1.059.242-1.059 1.392 0 1.001.426 1.622 1.114 1.622.492 0 .842-.296 1.022-.91.145.08 1.52.858 1.64.927-.112.18-.256.38-.45.574-.86.872-1.967.934-2.323.934zm-14.873-.034c-1.837 0-3.07-1.28-3.07-3.07 0-.812.269-1.556.762-2.102a3.08 3.08 0 012.319-1.012c1.289 0 2.287.62 2.962 1.6-.154.063-1.622.674-1.734.722-.245-.53-.626-.788-1.106-.788-.206 0-.503.05-.741.29-.272.272-.286.56-.298.815l-.004.088h4c-.02.856-.054 1.77-.846 2.551a3.294 3.294 0 01-2.244.906zm21.467-.048c-.865 0-1.526-.17-2.019-.425-.744-.392-.907-.981-.989-1.478.17 0 1.869.05 1.977.053.092.455.31.605.822.605.688 0 .836-.29.848-.727l.003-.06-.057-.016c-.348-.101-.593-.158-1.225-.246-.957-.126-1.589-.208-2.099-.728-.308-.308-.464-.702-.464-1.172 0-.854.523-1.845 1.99-1.845 1.032 0 1.551.361 1.83.553l.133.092v-.522h2.024c-.108.18-.133.322-.133.64v3.19c0 .334 0 .839-.325 1.255-.39.502-1.17.831-2.316.831zm7.72-.04c-1.198 0-1.562-.58-1.759-.858l-.15-.213v.927h-2v-5.729h2.122v3.057c0 .252.01 1.015.858 1.015.85 0 .82-.681.82-.937v-3.135h2.122v3.62c0 .309 0 1.206-.552 1.744-.354.332-.837.51-1.46.51zm-39.068-.016c-1.18 0-1.479-.561-1.66-.853l-.153-.25v.959h-2.022v-5.717h2.122v3.114l.003.037c.01.194.023.436.24.655.162.162.36.255.627.255.337 0 .704-.164.808-.627.023-.114.033-.229.033-.34v-3.09h2.122v3.057c0 .12 0 .372.119.595.144.271.371.41.757.41.872 0 .841-.718.841-1.062v-3h2.12l.002 3.696h-.002c-.01.528-.022 1.125-.518 1.61-.348.35-.91.55-1.536.55-1.36 0-1.739-.72-1.846-.962l-.061-.149-.075.144c-.148.284-.349.612-1.07.838-.339.107-.648.13-.85.13zm-8.69-.008l.907-3.013h-1.839l.931 3.013zm26.504-.002c-.792 0-1.269-.148-1.861-.676l-.128-.114v.704h-2.035v-5.76h2.113v2.702c.01.361.037 1.32 1.445 1.32.13 0 .339-.009.466-.015v1.84zm.767-.122v-5.706h2.269v5.706h-2.269zm-8.644-1.134c.336 0 .727-.199.836-.644a.815.815 0 00.027-.148l.017-.174h-1.84l.024.1c.053.248.194.866.936.866zm22.04-1.892v-.11c0-.2 0-.4-.116-.657-.218-.48-.787-.666-1.12-.666-.469 0-.641.257-.641.456 0 .09.036.373.512.563v.003h.005c.18.06.357.1.53.14l.06.015c.221.062.436.139.644.21l.127.046zm-17.793-4.975c-1.203 0-2.223-.466-2.951-1.317-.644-.753-1.014-1.854-1.014-2.914 0-1.05.34-2.09.958-2.811.713-.833 1.753-1.288 3.007-1.288 1.18 0 2.237.417 2.974 1.144.346.345.59.79.772 1.131l-1.983.96c-.375-1.03-1.114-1.324-1.65-1.324-.592 0-1.045.246-1.345.73-.247.399-.38.953-.38 1.6 0 .303 0 1.226.61 1.81.164.167.527.444 1.102.444 1.052 0 1.486-.88 1.682-1.337l1.95.973c-.15.275-.36.636-.661.946-.774.797-1.867 1.253-3.07 1.253zm-27.165-.278v-7.808h2.318v2.826h.854l1.559-2.826h2.556l-1.873 3.108-.047.076.136.055c.344.138.642.254.926.56.381.387.575.927.575 1.543 0 .788-.342 1.82-1.3 2.23-.504.21-1.276.236-1.893.236h-3.811zm18.077-.01V996.456l-.152.134c-.231.21-.577.525-1.384.525-1.204 0-2.42-.947-2.42-2.895 0-1.858.98-3.134 2.496-3.134.317 0 .59.045.836.139.31.118.413.234.555.397l.134.154v-.547h2.055v7.797h-2.12zm-15.758-1.547h1.094c.383 0 1.281-.004 1.281-.946 0-.961-.923-.952-1.27-.952h-1.105v1.898zm36.892-.287c-1.028.005-1.881-.315-2.467-.898-.547-.543-.836-1.361-.836-2.25 0-.8.265-1.587.745-2.104.556-.6 1.398-.932 2.436-.932 1.024 0 1.878.305 2.466.853.57.53.87 1.337.87 2.217 0 .86-.333 1.777-.87 2.294-.251.237-.983.807-2.344.82zm6.419-.006c-.858 0-1.52-.235-1.968-.66a1.91 1.91 0 01-.551-1.31c0-1.162.99-1.483 1.525-1.638.513-.151.982-.227 1.183-.261.223-.032.64-.088.64-.422 0-.297-.34-.43-.675-.43-.307 0-.613.063-.936.194a2.768 2.768 0 00-.886.599c-.093-.085-1.059-.974-1.173-1.077.473-.382 1.423-1.172 3.019-1.172 1.824 0 2.64 1.034 2.64 2.119 0 .62-.303 1.156-.854 1.453-.27.14-.51.194-1.518.423l-.043.011c-.752.186-.933.225-.933.463 0 .142.073.376.564.376.604 0 1.145-.328 1.527-.567l1.139 1.04c-.275.206-.704.533-1.425.705a5.599 5.599 0 01-1.275.154zm6.004 0c-.86 0-1.521-.235-1.968-.66a1.908 1.908 0 01-.55-1.31c0-1.162.991-1.483 1.523-1.638.513-.151.982-.227 1.183-.261.224-.032.637-.088.637-.422 0-.297-.335-.43-.671-.43a2.46 2.46 0 00-.936.194 2.814 2.814 0 00-.888.599c-.093-.085-1.058-.974-1.172-1.077.473-.382 1.421-1.172 3.017-1.172 1.825 0 2.641 1.034 2.641 2.119 0 .62-.303 1.156-.853 1.453-.269.14-.51.194-1.517.423l-.046.011c-.752.186-.93.225-.93.463 0 .142.074.376.565.376.603 0 1.14-.328 1.525-.567.075.07 1.022.933 1.14 1.04-.276.206-.706.533-1.426.705a5.592 5.592 0 01-1.274.154zm-41.198-.007c-1.836 0-3.07-1.278-3.07-3.07 0-.81.27-1.555.762-2.101a3.081 3.081 0 012.319-1.011c1.289 0 2.288.618 2.962 1.598-.155.064-1.622.674-1.734.722-.245-.53-.625-.788-1.106-.788-.206 0-.501.05-.74.288-.273.274-.287.562-.298.819l-.003.085h3.998c-.02.856-.053 1.772-.846 2.554-.706.686-1.61.904-2.244.904zm25.066-.109c-.791-.005-1.268-.148-1.86-.676l-.128-.115v.702h-2.033v-5.762h2.111v2.709c.011.36.039 1.32 1.446 1.32.13 0 .338-.008.464-.017v1.84zm-25.012-1.26c.338 0 .728-.2.84-.645a.812.812 0 00.023-.147l.019-.173H81.77l.02.1c.055.247.195.864.936.864zm28.653-.142c.305.01.555-.077.745-.26.261-.254.394-.682.394-1.275 0-1.333-.613-1.613-1.126-1.613-.99 0-1.138.996-1.138 1.59 0 .57.146 1.533 1.125 1.559zm-21.973-.1c.299 0 .706-.188.868-.715.077-.23.092-.462.092-.742 0-.298 0-.849-.321-1.182a.913.913 0 00-.629-.276.865.865 0 00-.63.267c-.222.248-.333.634-.333 1.182 0 .26.021.48.067.69v.002l.002.001c.2.717.733.775.892.775z"
+ transform="matrix(1.25 0 0 -1.25 1.288 1287.3) translate(-79.039 -967.29) scale(1.9688)"
+ ></path>
+ </svg>
);
}
-
-function NetflixLogo() {
+function ASPCALogo() {
return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="108"
- height="29"
- fill="none"
- viewBox="0 0 108 29">
- <g>
- <path
- fill="currentColor"
- d="M14.714 27.096c-1.61.283-3.248.367-4.942.593L4.603 12.551V28.34c-1.61.17-3.078.395-4.603.621V.04h4.293l5.874 16.409V.039h4.547v27.057zm8.897-16.465c1.75 0 4.434-.085 6.044-.085v4.519c-2.006 0-4.35 0-6.044.085v6.721c2.655-.17 5.31-.395 7.992-.48v4.35l-12.511.988V.039h12.511v4.52h-7.992v6.072zm24.797-6.072h-4.689v20.786c-1.525 0-3.05 0-4.518.056V4.56h-4.688V.039h13.895v4.52zm7.343 5.761h6.185v4.519H55.75V25.09h-4.435V.04h12.625v4.519h-8.19v5.761zm15.533 10.817c2.57.056 5.168.254 7.682.395v4.463c-4.038-.255-8.077-.509-12.2-.594V.04h4.518v21.097zm11.495 5.168c1.44.085 2.965.17 4.434.34V.04h-4.434v26.265zM107.01.04l-5.733 13.754 5.733 15.166c-1.695-.226-3.389-.537-5.084-.819l-3.248-8.36-3.304 7.683c-1.638-.283-3.22-.368-4.857-.594l5.818-13.246L91.082.04h4.858l2.965 7.597L102.07.04h4.942z"></path>
- </g>
- </svg>
+ <svg
+ xmlns="http://www.w3.org/2000/svg"
+ width="115"
+ height="31"
+ fill="none"
+ viewBox="0 0 115 31">
+ <g
+ fillRule="evenodd"
+ stroke="none"
+ transform="matrix(1.25 0 0 -1.25 -243.599 932.946)">
+ <path
+ fill="currentColor"
+ d="M277.756 745.726h-4.764l-2.948-7.345c-1.284 3.582-5.13 7.976-11.63 7.976-3.785 0-6.827-1.49-8.956-3.714.818-1.422 1.22-3.064 1.22-4.715-.018-2.651-1.04-5.36-2.822-6.913l-.003-.001v-.003a9.162 9.162 0 00-1.166-.861c1.595-4.677 5.953-8.343 11.791-8.343 1.933 0 3.764.432 5.4 1.207l-.379-.944h6.486l1.25 3.423h8.215l1.15-3.423h6.553l-9.397 23.656zm-13.65-14.62c-.385-.831-1.919-3.994-5.692-3.994-3.93 0-6.36 3.453-6.36 7.03 0 3.36 2.27 6.909 6.328 6.909 3.263 0 5.051-2.365 5.723-4.124h5.356l-2.336-5.82h-3.02zm8.79-.818l2.431 8.085h.095l2.433-8.085h-4.959zm-49.015 11.016c1.852 0 2.042-1.503 2.173-2.3H231v3.914a7.295 7.295 0 01-.534.753c-1.536 1.82-4.06 2.686-6.395 2.686-3.964 0-8.278-2.527-8.278-6.968 0-4.444 4.122-6.11 5.786-6.78 3.643-1.534 4.633-1.918 4.633-3.485 0-1.085-.862-2.27-2.299-2.27-.767 0-2.46.48-2.46 3.229h-6.014v-.04l-6.303 15.865h-4.765l-9.492-23.656h6.49l1.245 3.418h8.216l1.151-3.418h6.554l-.538 1.354c1.31-1.066 3.222-1.8 5.98-1.8 3.634 0 5.822 1.284 7.023 3.03v8.039c-.842 1.049-2.195 2.013-4.308 2.962-4.25 1.92-4.889 2.21-4.889 3.614 0 1.118 1.024 1.853 2.078 1.853m-19.603-10.837l2.428 8.09h.097l2.43-8.09h-4.955z">
+ </path>
+ <path
+ fill="currentColor"
+ d="M231.91 745.941h7.758c4.39 0 6.025-.672 7.31-1.731 1.858-1.537 2.791-3.877 2.791-6.282 0-2.404-.998-4.938-2.504-6.222-1.635-1.378-3.238-2.05-6.926-2.05h-2.628v-7.441h-5.802v23.726zm5.801-10.963h2.47c1.152 0 3.782 0 3.782 2.853 0 2.789-2.693 2.789-4.009 2.789h-2.243v-5.642z">
+ </path>
+ </g>
+ </svg>
);
}
-function SonyLogo() {
+function HabitatForHumanity() {
return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="136"
- height="24"
- viewBox="0 0 351 61">
- <g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
- <g fill="currentColor" fillRule="nonzero">
- <path d="M345.559 49.001a5.448 5.448 0 00-4.81 2.72 5.538 5.538 0 000 5.559 5.448 5.448 0 004.81 2.719 5.425 5.425 0 003.855-1.618A5.513 5.513 0 00351 54.487c0-1.454-.573-2.85-1.593-3.879a5.42 5.42 0 00-3.848-1.607zm0 10.337a4.774 4.774 0 01-3.4-1.42 4.85 4.85 0 01-1.399-3.43c0-1.282.507-2.51 1.407-3.415a4.768 4.768 0 013.392-1.409c1.269 0 2.485.509 3.383 1.413a4.84 4.84 0 011.4 3.41 4.847 4.847 0 01-1.393 3.427 4.77 4.77 0 01-3.39 1.424z"></path>
- <path d="M348.163 53.183c0-.503-.223-1.032-.67-1.285-.45-.265-.952-.291-1.456-.291h-2.604v5.958h.729v-2.748h1.344l1.706 2.748h.868l-1.805-2.748c1.065-.03 1.888-.462 1.888-1.634zm-2.882 1.06h-1.121v-2.107h1.706c.742 0 1.556.112 1.556 1.034.002 1.213-1.303 1.073-2.14 1.073zm-31.199-29.868l10.93-11.639c.634-.854.95-1.453.95-1.965 0-.854-.738-1.196-3.055-1.196h-2.758V2.227H350v7.348h-3.922c-4.53 0-5.371.682-11.691 8.628l-17.292 18.622V48.19c0 2.907 1.472 3.93 5.686 3.93h6.529v7.09H287.5v-7.09h6.527c4.211 0 5.687-1.023 5.687-3.93V36.825l-20.366-22.468c-3.366-3.928-2.9-4.782-12.271-4.782V2.227h37.811v7.348h-2.692c-2.74 0-3.9.512-3.9 1.536 0 .857.842 1.54 1.369 2.222l10.304 11.199c1.224 1.27 2.718 1.434 4.113-.157zM60.388 2.225h9.12v20.503h-8.423c-.746-4.099-3.318-5.693-5.664-7.844-4.231-3.877-13.395-7.106-21.102-7.106-9.948 0-18.344 3.077-18.344 7.602 0 12.56 56.892 2.565 56.892 26.314C72.867 54.08 60.68 61 38.796 61c-7.577 0-19.041-2.345-25.805-5.927-2.12-1.22-3.02 1.156-3.418 4.134H.22V38.02h8.46c1.865 5.383 4.435 6.491 6.8 8.628 4.101 3.76 13.865 6.496 22.82 6.408 13.5-.133 18.142-3.076 18.142-7.348 0-4.27-4.591-5.297-19.385-7.602l-12.562-2.051C10.321 33.918 0 30.758 0 19.482 0 7.778 13.056.43 33.7.43c8.699 0 15.977 1.16 22.963 5.097 1.934 1.254 3.75 1.404 3.725-3.302zM238.39 36.552l.18-22.787c0-2.99-1.56-4.015-6.016-4.015h-5.236V2.66h33.315v7.09h-4.342c-4.46 0-6.02 1.027-6.02 4.015V59.64l-13.04-.103-42.228-39.878v28.96c0 2.906 1.56 4.015 6.017 4.015h5.797v7.006h-34.6v-7.006h5.733c4.456 0 6.016-1.11 6.016-4.014V13.765c0-2.99-1.56-4.015-6.016-4.015h-5.733V2.66h29.914l36.26 33.892zM126.796 0c-26.551 0-43.172 11.706-43.172 30.498 0 18.456 16.39 30.072 42.362 30.072 27.586 0 43.632-11.446 43.632-31.01C169.62 11.962 152.304 0 126.796 0zm-.604 53.14c-14.697 0-23.145-8.459-23.145-23.068 0-14.266 8.816-22.724 23.88-22.724 14.451 0 22.899 8.63 22.899 23.324 0 14.352-8.572 22.468-23.634 22.468z"></path>
+ <svg xmlns="http://www.w3.org/2000/svg" width="110" height="40" viewBox="0 0 200 70">
+ <defs>
+ <clipPath id="clp5" clipRule="nonzero">
+ <path d="M0 81.647V0h243.64v81.647"></path>
+ </clipPath>
+ <clipPath id="clp4" clipRule="nonzero">
+ <path d="M-77.29-36.553v54.957H86.705v-54.957H-77.29z"></path>
+ </clipPath>
+ </defs>
+ <g transform="translate(-166.019 -427.524)">
+ <g
+ fill="none"
+ stroke="none"
+ className="ps00"
+ transform="matrix(1.21584 0 0 -1.21584 103.326 1321.104)"
+ >
+ <g transform="matrix(1 0 0 -1 131.32 696.927)">
+ <clipPath clipRule="nonzero">
+ <path d="M-77.29-36.553v54.957H86.705v-54.957H-77.29z"></path>
+ </clipPath>
+ <g clipPath="url(#clp4)">
+ <g transform="matrix(.6731 0 0 -.6731 -77.29 18.404)">
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M30.406 46.827a4.367 4.367 0 108.713.63 4.368 4.368 0 10-8.713-.63"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColorcurrentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M81.672 46.827a4.369 4.369 0 11-8.715.63 4.369 4.369 0 018.715-.63"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M96.063 39.977c-.513 1.895-3.128 2.183-5.434 1.583-1.82-.475-8.153-2.232-13.775-1.824-4.04.292-7.989 3.653-10.446 5.953 2.441 2.814 5.59 5.833 6.312 6.679 1.044 1.217 1.217 3.129.348 3.998-.868.868-2.433.344-3.998-.698-1.561-1.042-7.471-6.992-13.108-6.992-5.635 0-11.738 5.95-13.303 6.992-1.564 1.042-3.825.869-4.694 0-.868-.869.002-2.083 1.046-3.3.739-.864 4.006-3.995 6.466-6.859-2.468-2.291-6.318-5.489-10.253-5.773-5.622-.408-11.956 1.349-13.775 1.824-2.306.6-4.921.312-5.435-1.583-.322-1.184.683-2.488 2.033-3.369 1.343-.876 8.308-2.23 10.267-5.226 1.958-2.994 2.257-26.162 4.082-26.939 1.33-.568 3.65-.568 4.91.074 1.768.896 4.75 26.173 6.255 29.42.833 1.792 2.929 4.472 4.799 6.731 1.611-7.55 3.373-35.673 5.071-36.26 1.284-.444 3.84-.444 4.867 0 1.675.724 3.508 29.588 5.145 36.591 1.935-2.323 4.2-5.181 5.074-7.062 1.505-3.247 4.486-28.524 6.253-29.42 1.262-.642 3.58-.642 4.912-.074 1.822.777 2.121 23.945 4.081 26.939 1.96 2.996 8.924 4.35 10.267 5.226 1.35.881 2.354 2.185 2.033 3.369"
+ className="ps01"
+ ></path>
+ <g
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ className="ps01"
+ >
+ <clipPath clipRule="nonzero">
+ <path d="M0 81.647V0h243.64v81.647"></path>
+ </clipPath>
+ <g clipPath="url(#clp5)">
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M51.67 56.097a4.367 4.367 0 004.37 4.367 4.367 4.367 0 000-8.735 4.369 4.369 0 00-4.37 4.368"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M96.935 55.789c2.123-3.369-2.323-4.633-5.718-3.857-2.844.648-30.734 15.561-34.916 15.945-4.168.38-29.256-15.044-32.021-16.524-4.062-2.172-7.65-1.965-11.401-.02-1.238.646-10.794 5.69-12.879 7.098 2.084 1.947 31.09 19.362 34.467 21.054 3.884 1.949 6.199 2.971 10.469 1.376 2.961-1.109 51.119-23.679 51.999-25.072"
+ className="ps02"
+ ></path>
+ </g>
+ </g>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M11.003 34.157c1.086-.161 6.214-2.371 8.245-3.417 4.882-2.514 5.135-5.014 5.692-9.083.595-4.335 1.107-12.412 1.192-15.472-2.043.876-10.042 7.57-11.951 9.22-1.48 1.283-3.135 2.198-3.132 4.185.003.759-.346 12.701-.046 14.567"
+ className="ps02"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M239.17 18.57h1c.67 0 .89.238.89.721 0 .423-.32.659-.75.659h-1.14v-1.38zm0-2.376h-.62v4.27h1.63c1 0 1.49-.403 1.49-1.213 0-.77-.5-1.094-1.11-1.174l1.23-1.883h-.68l-1.16 1.864h-.78v-1.864zm.79-.995c1.7 0 3.01 1.341 3.01 3.115 0 1.747-1.31 3.097-3.01 3.097-1.72 0-3.02-1.35-3.02-3.097 0-1.774 1.3-3.115 3.02-3.115zm0 6.763c2.01 0 3.68-1.576 3.68-3.648 0-2.091-1.67-3.668-3.68-3.668-2 0-3.69 1.577-3.69 3.668 0 2.072 1.69 3.648 3.69 3.648"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M116.32 57.872c-.18-2.146-.22-4.642-.22-7.314V45.52c.96-.045 1.92-.088 3.33-.088 1.4 0 2.36.043 3.32.088v5.038c0 2.672-.04 5.168-.21 7.314h8.28c-.44-4.511-.44-8.192-.44-15.638s0-11.128.44-15.639h-8.28c.17 2.144.21 4.645.21 7.315v6.395c-.96.045-1.92.088-3.32.088-1.41 0-2.37-.043-3.33-.088V33.91c0-2.67.04-5.171.22-7.315h-8.28c.43 4.511.43 8.193.43 15.639s0 11.127-.43 15.638h8.28"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M144.13 37.985c-2.75-.701-4.47-2.41-4.47-4.6 0-1.534.97-2.716 2.37-2.716.92 0 1.84.571 2.1.964v6.352zm-9.5 10.864c.61.087 2.98.349 4.6.349 9.06 0 11.82-3.547 11.82-9.417v-5.476c0-2.102 0-4.47 1.14-7.71h-6.96c-.53.701-.7 1.182-.75 1.357-1.18-.876-2.8-1.707-4.9-1.707-4.25 0-7.01 2.935-7.01 6.614 0 4.03 3.19 6.747 7.36 8.104l3.63 1.184c-.04 1.533-1.05 2.847-3.11 2.847-1.4 0-3.59-.657-5.82-2.277v6.132"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M161.94 32.727c0-1.271.48-2.277 1.88-2.277 1.8 0 3.07 1.839 3.07 7.052 0 3.724-.97 6.922-3.16 6.922-1.18 0-1.79-.744-1.79-1.796v-9.901zm0 25.145v-9.899c1.09.656 2.67 1.225 4.25 1.225 4.16 0 8.06-3.065 8.06-11.038 0-6.178-3.37-12.09-9.59-12.09-1.67 0-3.6.568-5.66 2.189l-2.45-2.102-2.1 1.271c.39 2.802.39 5.781.39 8.937v12.571c0 1.622 0 3.418-.44 8.936h7.54"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M184.13 48.672c-.09-2.275-.09-5.606-.09-10.336 0-5.959 0-8.939.4-11.741h-7.89c.39 2.802.39 5.782.39 8.937v4.205c0 3.155 0 6.132-.39 8.935h7.58zm-3.64 9.509c2.19 0 3.95-1.754 3.95-3.944s-1.76-3.942-3.95-3.942a3.924 3.924 0 00-3.94 3.942c0 2.19 1.75 3.944 3.94 3.944"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M196.22 55.376c-.09-1.357-.14-3.943-.14-6.704h3.29v-4.203h-3.29V33.428c0-1.795.66-2.803 2.42-2.803.26 0 .52 0 .92.044v-3.943c-1.45-.481-2.94-.656-4.43-.656-1.97 0-3.55.699-4.73 2.102-.92 1.096-1.27 2.934-1.27 5.17v11.127h-2.54v4.203h2.54c0 2.761-.04 5.347-.13 6.704h7.36"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M213.18 37.985c-2.76-.701-4.46-2.41-4.46-4.6 0-1.534.96-2.716 2.36-2.716.92 0 1.84.571 2.1.964v6.352zm-9.5 10.864c.61.087 2.98.349 4.6.349 9.07 0 11.83-3.547 11.83-9.417v-5.476c0-2.102 0-4.47 1.13-7.71h-6.96c-.53.701-.7 1.182-.74 1.357-1.19-.876-2.81-1.707-4.91-1.707-4.25 0-7.01 2.935-7.01 6.614 0 4.03 3.2 6.747 7.36 8.104l3.64 1.184c-.05 1.533-1.06 2.847-3.12 2.847-1.4 0-3.59-.657-5.82-2.277v6.132"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M231.96 55.376c-.08-1.357-.13-3.943-.13-6.704h3.29v-4.203h-3.29V33.428c0-1.795.66-2.803 2.41-2.803.27 0 .53 0 .92.044v-3.943c-1.44-.481-2.93-.656-4.42-.656-1.97 0-3.55.699-4.73 2.102-.92 1.096-1.27 2.934-1.27 5.17v11.127h-2.55v4.203h2.55c0 2.761-.05 5.347-.14 6.704h7.36"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M115.17 18.984c-.1.073-.41.239-.93.239-.99 0-1.47-.759-1.47-1.568 0-.472.14-.949.24-1.187h1.78v-2.277h-1.81V9.35c0-1.708 0-3.322.22-4.84h-4.28c.22 1.518.22 3.132.22 4.84v4.841h-1.31v2.277h1.31v.927c0 1.401.24 2.348 1.35 3.275.95.759 2.14 1.02 3.18 1.02.57 0 1.19-.095 1.5-.214v-2.492"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M119.23 10.489c0-2.87.62-3.892 1.33-3.892.72 0 1.33 1.021 1.33 3.892s-.61 3.892-1.33 3.892c-.71 0-1.33-1.021-1.33-3.892zm6.88 0c0-4.034-2.65-6.264-5.55-6.264-2.89 0-5.55 2.23-5.55 6.264 0 4.033 2.66 6.266 5.55 6.266 2.9 0 5.55-2.233 5.55-6.266"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M131.12 16.468a8.19 8.19 0 00.34-1.588c.83 1.113 1.82 1.875 3.01 1.875.26 0 .4-.026.52-.072v-3.157c-.26.073-.59.096-.71.096-1.81 0-2.59-1.662-2.59-4.272 0-1.708 0-3.322.22-4.84h-4.42c.22 1.518.22 3.132.22 4.84v2.278c0 1.709 0 3.322-.41 4.84h3.82"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M147.64 21.452c-.1-1.163-.12-2.514-.12-3.963v-2.728a35.37 35.37 0 013.61 0v2.728c0 1.449-.02 2.8-.12 3.963h4.48c-.23-2.444-.23-4.435-.23-8.471 0-4.033 0-6.029.23-8.471h-4.48c.1 1.163.12 2.514.12 3.962v3.464c-.52.024-1.05.049-1.81.049s-1.28-.025-1.8-.049V8.472c0-1.448.02-2.8.12-3.962h-4.48c.23 2.442.23 4.438.23 8.471 0 4.036 0 6.027-.23 8.471h4.48"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M164.15 4.51c-.16.355-.28.757-.35 1.067-.88-.855-1.78-1.352-3.01-1.352-2.02 0-3.35 1.471-3.35 3.75v3.653c0 1.709 0 3.322-.22 4.84h4.06v-7.95c0-.947.38-1.494 1.07-1.494.59 0 1.21.428 1.21 1.258v3.346c0 1.709 0 3.322-.21 4.84h4.27c-.22-1.518-.22-3.131-.22-4.84V9.35c0-1.708 0-3.322.22-4.84h-3.47"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M173.17 16.468c.17-.356.29-.758.36-1.065.88.805 1.94 1.352 3.13 1.352 1.28 0 2.09-.735 2.66-1.52.85.758 1.8 1.52 3.34 1.52 2.33 0 3.21-1.639 3.21-3.987V9.35c0-1.708 0-3.322.21-4.84h-4.27c.21 1.518.21 3.132.21 4.84v3.298c0 .832-.23 1.448-.97 1.448-.8 0-1.26-.616-1.26-1.448V9.35c0-1.708 0-3.322.22-4.84h-4.28c.22 1.518.22 3.132.22 4.84v3.345c0 .785-.24 1.401-.97 1.401-.67 0-1.26-.546-1.26-1.258V9.35c0-1.708 0-3.322.21-4.84h-4.27c.21 1.518.21 3.132.21 4.84v2.278c0 1.709 0 3.322-.21 4.84h3.51"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M193.54 10.681c-1.5-.381-2.42-1.308-2.42-2.494 0-.83.52-1.471 1.28-1.471.49 0 1 .308 1.14.523v3.442zm-5.15 5.884c.33.045 1.61.19 2.49.19 4.91 0 6.41-1.924 6.41-5.104V8.687c0-1.14 0-2.423.61-4.177h-3.77c-.28.378-.38.64-.4.735-.64-.476-1.52-.926-2.66-.926-2.3 0-3.8 1.592-3.8 3.583 0 2.183 1.73 3.654 3.99 4.391l1.97.641c-.02.831-.57 1.543-1.69 1.543-.75 0-1.94-.358-3.15-1.236v3.324"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M202.46 16.468c.16-.356.28-.758.35-1.065.88.852 1.78 1.352 3.01 1.352 2.02 0 3.35-1.471 3.35-3.75V9.35c0-1.708 0-3.322.21-4.84h-4.27c.22 1.518.22 3.132.22 4.84v3.275c0 .735-.31 1.328-1.03 1.328-.59 0-1.25-.427-1.25-1.139V9.35c0-1.708 0-3.322.21-4.84h-4.27c.21 1.518.21 3.132.21 4.84v2.278c0 1.709 0 3.322-.21 4.84h3.47"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M214.89 16.468c-.05-1.233-.05-3.037-.05-5.599 0-3.227 0-4.84.22-6.36h-4.27c.21 1.52.21 3.133.21 4.84v2.279c0 1.709 0 3.322-.21 4.84h4.1zm-1.97 5.152c1.19 0 2.14-.95 2.14-2.137s-.95-2.135-2.14-2.135c-1.18 0-2.13.948-2.13 2.135 0 1.187.95 2.137 2.13 2.137"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M221.65 20.101c-.05-.737-.07-2.137-.07-3.633h1.78v-2.277h-1.78v-5.98c0-.972.36-1.519 1.3-1.519.15 0 .29 0 .5.024V4.58c-.78-.26-1.59-.355-2.39-.355-1.07 0-1.92.379-2.56 1.137-.5.596-.69 1.59-.69 2.801v6.028h-1.38v2.277h1.38c0 1.496-.03 2.896-.07 3.633h3.98"
+ className="ps01"
+ ></path>
+ <path
+ fill="currentColor"
+ fillRule="nonzero"
+ stroke="none"
+ d="M228.61 16.468c.3-1.85 1.21-5.219 1.68-6.762h.05a58.414 58.414 0 011.38 6.762h3.39c-.79-3.25-2.57-9.848-4.08-12.955C230.24 1.923 229.06 0 225.8 0c-.33 0-.82.024-1.13.12v3.036c.21-.119.73-.355 1.33-.355 1.23 0 2.06 1.02 2.06 1.898 0 .45-.09.736-1.04 3.25-1.29 3.37-2.26 6.931-2.52 8.519h4.11"
+ className="ps01"
+ ></path>
+ </g>
+ </g>
+ </g>
+ </g>
</g>
- </g>
- </svg>
+ </svg>
);
}
-
-function VerizonLogo() {
+function VolunteerMatchLogo() {
return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- width="138"
- height="31"
- viewBox="0 0 658 146">
- <g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
- <g>
+ <svg xmlns="http://www.w3.org/2000/svg"
+ width="120"
+ height="29"
+ fill="currentColor"
+ viewBox="0 0 1350 290">
+ <g fill="currentColor" strokeWidth="2">
<path
- fill="currentColor"
- d="M642.7 0L606.8 76.8 593.3 47.7 578.7 47.7 600.9 95.3 612.7 95.3 657.2 0z"></path>
+ stroke="44c499"
+ d="M139.48 158.1c-3.54-3.25-7.33-7.5-11.1-9.57-13.84-7.57-29.69 1.68-30.9 17.23-.55 7.09 3.08 12.33 8.38 17.67q18.41 18.55 36.85 37.22"
+ vectorEffect="non-scaling-stroke"
+ ></path>
<path
- fill="currentColor"
- fillRule="nonzero"
- d="M488.7 142.6h28.9V89.7c0-12.1 7-20.6 17.4-20.6 10 0 15.2 7 15.2 17.1v56.4h28.9V80.7c0-21-12.6-35.8-33-35.8-13 0-22.1 5.6-28.9 15.8h-.6v-13h-28l.1 94.9zm-56.8-97.5c-30.2 0-50.4 21.7-50.4 50.3 0 28.4 20.2 50.3 50.4 50.3s50.4-21.9 50.4-50.3c.1-28.6-20.2-50.3-50.4-50.3zm-.2 79.2c-13.7 0-21-11.5-21-28.9 0-17.6 7.2-28.9 21-28.9 13.7 0 21.3 11.3 21.3 28.9.1 17.4-7.5 28.9-21.3 28.9zm-132.6 18.3h81.2v-22.8h-46v-.6l44-49.3V47.6h-79.2v22.9h44.5v.6l-44.5 49.7v21.8zm-37.1 0h29.1V47.7H262v94.9zm-67.5 0h29V99c0-19.8 11.9-28.6 30-26.1h.6v-25c-1.5-.6-3.2-.7-5.9-.7-11.3 0-18.9 5.2-25.4 16.3h-.6V47.7h-27.7v94.9zm-53.2-18.2c-12.8 0-20.6-8.3-22.1-21.1h68.4c.2-20.4-5.2-36.7-16.5-46.9-8-7.4-18.5-11.5-31.9-11.5-28.6 0-48.4 21.7-48.4 50.1 0 28.6 18.9 50.4 50.3 50.4 11.9 0 21.3-3.2 29.1-8.5 8.3-5.7 14.3-14.1 15.9-22.4h-27.8c-2.7 6.2-8.5 9.9-17 9.9zm-1.5-58.8c10.2 0 17.2 7.6 18.4 18.7h-38.8c2.3-11.2 8.4-18.7 20.4-18.7zM33 142.6h30.4l33-94.9H67.3l-18.5 61h-.4l-18.5-61H0l33 94.9zM262 13.9h29.1v25.8H262V13.9z"></path>
+ stroke="88ddf7"
+ d="M142.71 220.65q0-.03.01-.06"
+ vectorEffect="non-scaling-stroke"
+ ></path>
+ <path
+ stroke="fa9"
+ d="M142.71 220.65q18.4-18.35 36.59-36.6 4.79-4.8 6.33-7.55c10.47-18.66-11.42-38.73-29.54-27.23-3.29 2.09-6.5 5.92-9.82 8.82"
+ vectorEffect="non-scaling-stroke"
+ ></path>
+ <path
+ stroke="#currentColor"
+ d="M182.16 172.77c5.59-12.71-7.25-26.52-20.38-21.28-6.05 2.41-13.13 10.99-18.48 16.33q-.4.41-.82 0c-5.31-5.2-11.95-13.26-17.72-15.9-13.22-6.07-26.78 7.26-21.34 20.7q1.27 3.13 5.17 7.07 16.83 16.99 33.74 34.04a.56.55 44.6 00.79 0q16.47-16.41 32.7-32.67 4.83-4.84 6.34-8.29"
+ vectorEffect="non-scaling-stroke"
+ ></path>
</g>
- </g>
- </svg>
+ <path
+ fill="currentColor"
+ d="M139.48 158.1c-3.54-3.25-7.33-7.5-11.1-9.57-13.84-7.57-29.69 1.68-30.9 17.23-.55 7.09 3.08 12.33 8.38 17.67q18.41 18.55 36.85 37.22 0-.03.01-.06c-8.77 8.96-18.46 19.84-27.92 26.06-40.48 26.61-95.1 3.62-104.91-43.62q-1.39-6.68-1.39-19.68V97.41c0-12.71 14.11-19.81 23.4-10.89 3.86 3.7 4.35 7.59 4.35 13.27v47.65c0 4.07 3.78 6.39 6.25 2.55q.25-.39.25-.86V53.16q0-7.24 1.37-10.49c4.93-11.73 22.29-10.63 25.9 1.65q.73 2.51.73 8.93-.01 40.2.01 80.4c0 5.45 6.48 5.09 6.48.5q.03-47.84-.01-95.69 0-6.51 1.38-9.71c4.69-10.82 20.22-10.78 25.16-.1q1.22 2.63 1.22 7.51l.02 97.3c0 5.55 6.73 5.42 6.73.52q.03-38.05 0-76.09 0-5.64 1.34-8.58c4.84-10.63 20.16-10.69 25.09-.03q1.31 2.82 1.31 8.27.05 50.16 0 100.55z"
+ ></path>
+ <path
+ fill="currentColor"
+ d="M142.72 220.59q-.01.03-.01.06 18.4-18.35 36.59-36.6 4.79-4.8 6.33-7.55c10.47-18.66-11.42-38.73-29.54-27.23-3.29 2.09-6.5 5.92-9.82 8.82q-.04-50.48-.01-100.75.01-5.37 1.16-7.99c4.77-10.78 21.03-10.62 25.44.3q1.11 2.74 1.11 8.97.06 37.46.02 74.93c-.01 3.9 3.72 5.87 6.24 2.26a1.53 1.45-28.9 00.27-.85V39.47q0-7.46 1.11-10.29c4.43-11.34 20.8-11.3 25.61-.2q1.25 2.88 1.26 10.33.04 47.4.02 94.79c0 4.99 6.49 4.53 6.49-.28q.02-43.16.01-86.32c0-13.7 20.38-18.09 26.38-5.54q1.35 2.82 1.35 8.44.04 48.28.02 96.57c-.01 6.37 6.73 6.21 6.74 1.09q.02-24.3 0-48.6 0-5.7 1.01-8.3c3.17-8.18 13.71-10.72 20.69-6.09 4.74 3.15 6.04 7.64 6.05 13.56q.02 41.31.01 82.61 0 13.93-1.06 19.95c-8.8 50.38-67.87 73.2-108.65 43.08-7.95-5.88-16.83-15.69-24.82-23.68z"
+ ></path>
+ <rect width="10.76" height="99" x="490.5" y="100.25" rx="0.6"></rect>
+ <path d="M1276.48 139.76a.23.23 0 00.41.14c16.1-21.89 50.12-13.85 50.3 15.67q.14 21.61.03 43.2a.48.48 0 01-.48.48h-9.72a.5.49 89.4 01-.49-.49q-.08-20.04-.07-40c.01-13.23-7.38-22.3-21.18-21.12-13.16 1.11-18.8 10.99-18.79 23.32q.02 18.91.01 37.78a.51.51 0 01-.51.51h-9.49q-.75 0-.75-.75V101q0-.75.75-.75h9.5q.51 0 .51.5l-.03 39.01zm-914.33 44.96l33.17-79.96a.42.42 0 01.39-.26h10.93a.42.42 0 01.39.58l-40.43 94.66a.42.42 0 01-.39.26h-9.17a.42.42 0 01-.39-.26l-40.43-94.66a.42.42 0 01.39-.58h11.34a.42.42 0 01.39.26l33.03 79.96a.42.42 0 00.78 0zm667.62-60.96a.2.2 0 00-.36-.11l-33.42 49.14a.96.96 0 01-1.58 0l-33.35-48.9a.31.31 0 00-.57.18l.02 74.55q0 .63-.63.63h-9.38q-.5 0-.5-.5v-93.5a.75.75 0 01.75-.75h9.72a.96.95-16.3 01.8.43l33.69 50.34a.46.46 0 00.76 0l33.62-50.26a1.16 1.14 16.6 01.96-.51h9.7q.75 0 .75.75v93.25q0 .75-.75.75h-9.63q-.63 0-.63-.63l.03-74.86zM688.24 138.5h-8.74a.5.5 0 01-.5-.5v-8.25a.5.5 0 01.5-.5h8.75a.5.5 0 00.5-.5v-20a.75.75 0 01.75-.75h9.5q.5 0 .5.5v20.25a.5.5 0 00.5.5h21q.75 0 .75.75v8a.5.5 0 01-.5.5h-21.24q-.51 0-.51.52-.03 20.38.11 40.72c.09 12.27 12.34 12.92 20.76 9.03q1.13-.52 1.13.73v7.5a.8.78 77.8 01-.45.72c-13.69 6.54-31.81 2.54-32.05-15.68q-.27-21.5-.28-43.06 0-.48-.48-.48zm454 0h-8.74a.5.5 0 01-.5-.5v-8.25a.5.5 0 01.5-.5h8.75a.5.5 0 00.5-.5v-20a.75.75 0 01.75-.75h9.5q.5 0 .5.5v20.25a.5.5 0 00.5.5h21q.75 0 .75.75v8a.5.5 0 01-.5.5h-21.24q-.51 0-.51.51-.03 20.39.1 40.73c.08 12.28 12.35 12.92 20.75 9.04q1.15-.53 1.15.73v7.52q0 .48-.44.69c-13.8 6.45-31.88 2.56-32.09-15.69q-.24-21.48-.25-43.04 0-.49-.48-.49zm-666.3 25.81a36.72 36.72 0 01-36.72 36.72 36.72 36.72 0 01-36.72-36.72 36.72 36.72 0 0136.72-36.72 36.72 36.72 0 0136.72 36.72zm-34.777 27.06a27.17 25.69 85.9 0023.681-28.937 27.17 25.69 85.9 00-27.567-25.263 27.17 25.69 85.9 00-23.681 28.937 27.17 25.69 85.9 0027.567 25.263zm173.277-51.38a.33.33 0 00.61.19c12.33-18.6 42.22-16.78 48.88 5.91q1.34 4.57 1.33 13.08-.02 19.92-.01 39.72a.35.35 0 01-.35.35l-9.85.01q-.54 0-.54-.54-.01-21.25-.05-42.43c-.04-23.59-33.2-25.19-39.01-4.03q-.89 3.25-.92 10.2-.07 18.16-.01 36.27a.53.53 0 01-.53.53h-9.49q-.75 0-.75-.75v-68.62q0-.63.63-.63h9.51q.64 0 .64.64l-.09 10.1z"></path>
+ <path d="M756.06 199.68c-39.15-10.22-30.88-76.89 12.77-71.65 20.34 2.44 29.12 20.67 28.4 39.5a.75.75 0 01-.75.72h-54.21a.55.55 0 00-.55.62c3.29 24.33 30.18 29.86 45.93 13.25a.72.71-47.1 01.99-.04l5.81 5.21q.39.35.04.73-15.99 17.51-38.43 11.66zm-13.56-39.39l43.28-.08a.3.3 0 00.3-.3v-.16a22.94 21.87 89.9 00-21.91-22.9h-.14a22.94 21.87 89.9 00-21.83 22.98v.16a.3.3 0 00.3.3zm67.97 12.73c-4.75-23.08 9.81-46.44 34.8-45.23 21.34 1.03 32.04 20.33 30.57 39.9q-.04.56-.6.56h-53.99q-.87 0-.75.87c3.54 24.31 30.41 29.5 46.06 12.87a.49.48-47.1 01.68-.03l5.98 5.34q.31.27.05.59c-18.82 22.83-56.7 14.85-62.8-14.87zm10.71-12.69l43.46-.16a.2.2 0 00.2-.2v-.21a22.99 21.86 89.8 00-21.94-22.91h-.14a22.99 21.86 89.8 00-21.78 23.07v.21a.2.2 0 00.2.2zm420.93-12.91c-17.43-20.23-47.48-7.98-45.66 18.57 1.73 25.3 29.9 33.63 46.42 15.23q.41-.46.87-.03l5.97 5.6q.41.38.05.81c-15.24 18.37-43.03 17.87-57.23-1.46-14.82-20.17-5.27-51.18 20.06-57.27q20.92-5.04 36.43 10.6a1.1 1.1 0 01.02 1.53l-6.14 6.44a.53.53 0 01-.79-.02zm-338.08-1.67a.22.22 0 00.41.11c5.85-10.84 14.96-18.33 27.56-17.86q.5.02.5.52V139a.52.52 0 01-.52.52c-20.95-.08-27.85 16.45-27.96 34.48q-.07 12.37 0 24.72a.53.53 0 01-.53.53H894q-.75 0-.75-.75V130q0-.75.75-.75h9.37q.61 0 .62.62l.04 15.88zm205.51 44.24c-11.03 13.11-36.48 15.72-47.15.3-6.04-8.75-4.01-21.72 4.24-28.11 10.7-8.26 29.89-7.28 42.89-3.47q.53.15.59-.4 1.03-9.42-4.53-15.01c-9.19-9.28-26.36-5.46-36.68-.65q-.58.28-.8-.33l-2.77-7.66q-.19-.52.31-.76c20.79-9.91 54.49-9.92 54.95 22.06q.31 21.37.11 42.85a.45.45 0 01-.45.44h-9.5a.5.5 0 01-.5-.5v-8.5a.4.4 0 00-.71-.26zm-36.85-19.8c-5.4 6.6-3.18 15.27 3.91 19.38 9.47 5.51 24.53 2.44 30.78-6.7q4.54-6.64 2.8-15.6-.09-.45-.52-.57c-10.13-2.97-29.38-5.8-36.97 3.49zm-499.86 18.29a.27.27 0 00-.49-.15c-12.19 18.47-41.91 16.78-48.77-5.6q-1.31-4.28-1.32-11.71-.01-20.66 0-41.27a.51.5 0 01.51-.5h9.47a.52.52 0 01.52.52q-.02 17.32.03 34.59.03 10.73 1.54 14.96c6.1 17.15 30.92 14.7 36.95-1.31q1.42-3.79 1.45-11.35.08-18.45.01-36.88a.53.53 0 01.53-.53h9.49q.75 0 .75.75v68.93a.31.31 0 01-.31.31l-9.83.01q-.65 0-.65-.65l.12-10.12z"></path>
+ <path
+ fill="currentColor"
+ d="M139.48 158.1l2.94 3.13q.42.44.84 0l3.01-3.14c3.32-2.9 6.53-6.73 9.82-8.82 18.12-11.5 40.01 8.57 29.54 27.23q-1.54 2.75-6.33 7.55-18.19 18.25-36.59 36.6-18.44-18.67-36.85-37.22c-5.3-5.34-8.93-10.58-8.38-17.67 1.21-15.55 17.06-24.8 30.9-17.23 3.77 2.07 7.56 6.32 11.1 9.57zm42.68 14.67c5.59-12.71-7.25-26.52-20.38-21.28-6.05 2.41-13.13 10.99-18.48 16.33q-.4.41-.82 0c-5.31-5.2-11.95-13.26-17.72-15.9-13.22-6.07-26.78 7.26-21.34 20.7q1.27 3.13 5.17 7.07 16.83 16.99 33.74 34.04a.56.55 44.6 00.79 0q16.47-16.41 32.7-32.67 4.83-4.84 6.34-8.29z"
+ ></path>
+ <path
+ fill="white"
+ d="M161.78 151.49c13.13-5.24 25.97 8.57 20.38 21.28q-1.51 3.45-6.34 8.29-16.23 16.26-32.7 32.67a.56.55 44.6 01-.79 0q-16.91-17.05-33.74-34.04-3.9-3.94-5.17-7.07c-5.44-13.44 8.12-26.77 21.34-20.7 5.77 2.64 12.41 10.7 17.72 15.9q.42.41.82 0c5.35-5.34 12.43-13.92 18.48-16.33z"
+ ></path>
+ </svg>
);
}
-
export default Hero; \ No newline at end of file
diff --git a/components/navbar.js b/components/navbar.js
index ed78cd6..ce5c5d0 100644
--- a/components/navbar.js
+++ b/components/navbar.js
@@ -5,11 +5,10 @@ import { Disclosure } from "@headlessui/react";
const Navbar = () => {
const navigation = [
- "Product",
- "Features",
- "Pricing",
- "Company",
- "Blog",
+ "Find Opportunities",
+ "Recruit Volunteers",
+ "Help Center",
+ "About Us",
];
return (
@@ -25,7 +24,7 @@ const Navbar = () => {
<span>
<Image
src="/img/logo.svg"
- alt="N"
+ alt="heart shaped handshake logo"
width="32"
height="32"
className="w-8"
@@ -66,7 +65,7 @@ const Navbar = () => {
</Link>
))}
<Link href="/" className="w-full px-6 py-2 mt-3 text-center text-white bg-indigo-600 rounded-md lg:ml-5">
- Get Started
+ Login
</Link>
</>
</Disclosure.Panel>
@@ -90,7 +89,7 @@ const Navbar = () => {
<div className="hidden mr-3 space-x-4 lg:flex nav__item">
<Link href="/" className="px-6 py-2 text-white bg-indigo-600 rounded-md md:ml-5">
- Get Started
+ Login
</Link>
<ThemeChanger />
diff --git a/components/popupWidget.js b/components/popupWidget.js
index 710dc9e..aeeb682 100644
--- a/components/popupWidget.js
+++ b/components/popupWidget.js
@@ -19,7 +19,7 @@ const PopupWidget = () => {
const onSubmit = async (data, e) => {
console.log(data);
- await fetch("https://api.web3forms.com/submit", {
+ await fetch("https://helpinghands.com/submit", {
method: "POST",
headers: {
"Content-Type": "application/json",
@@ -106,9 +106,9 @@ const PopupWidget = () => {
leaveTo="opacity-0 translate-y-5">
<Disclosure.Panel className=" flex flex-col overflow-hidden left-0 h-full w-full sm:w-[350px] min-h-[250px] sm:h-[600px] border border-gray-300 dark:border-gray-800 bg-white shadow-2xl rounded-md sm:max-h-[calc(100vh-120px)]">
<div className="flex flex-col items-center justify-center h-32 p-5 bg-indigo-600">
- <h3 className="text-lg text-white">How can we help?</h3>
+ <h3 className="text-lg text-white">Have a Question?</h3>
<p className="text-white opacity-50">
- We usually respond in a few hours
+ The Helping Hands team is here to help!
</p>
</div>
<div className="flex-grow h-full p-6 overflow-auto bg-gray-50 ">
@@ -246,20 +246,6 @@ const PopupWidget = () => {
)}
</button>
</div>
- <p
- className="text-xs text-center text-gray-400"
- id="result">
- <span>
- Powered by{" "}
- <a
- href="https://Web3Forms.com"
- className="text-gray-600"
- target="_blank"
- rel="noopener noreferrer">
- Web3Forms
- </a>
- </span>
- </p>
</form>
)}
diff --git a/components/sectionTitle.js b/components/sectionTitle.js
index cdf9ae6..2bc0754 100644
--- a/components/sectionTitle.js
+++ b/components/sectionTitle.js
@@ -4,7 +4,7 @@ import Container from "./container";
const SectionTitle = (props) => {
return (
<Container
- className={`flex w-full flex-col mt-4 ${
+ className={`flex w-full flex-col ${
props.align === "left" ? "" : "items-center justify-center text-center"
}`}>
{props.pretitle && (
diff --git a/components/testimonials.js b/components/testimonials.js
deleted file mode 100644
index cde6ea1..0000000
--- a/components/testimonials.js
+++ /dev/null
@@ -1,91 +0,0 @@
-import Image from "next/image";
-import React from "react";
-import Container from "./container";
-
-import userOneImg from "../public/img/user1.jpg";
-import userTwoImg from "../public/img/user2.jpg";
-import userThreeImg from "../public/img/user3.jpg";
-
-const Testimonials = () => {
- return (
- <Container>
- <div className="grid gap-10 lg:grid-cols-2 xl:grid-cols-3">
- <div className="lg:col-span-2 xl:col-auto">
- <div className="flex flex-col justify-between w-full h-full bg-gray-100 px-14 rounded-2xl py-14 dark:bg-trueGray-800">
- <p className="text-2xl leading-normal ">
- Share a real <Mark>testimonial</Mark>
- that hits some of your benefits from one of your popular customer.
- </p>
-
- <Avatar
- image={userOneImg}
- name="Sarah Steiner"
- title="VP Sales at Google"
- />
- </div>
- </div>
- <div className="">
- <div className="flex flex-col justify-between w-full h-full bg-gray-100 px-14 rounded-2xl py-14 dark:bg-trueGray-800">
- <p className="text-2xl leading-normal ">
- Make sure you only pick the <Mark>right sentence</Mark>
- to keep it short and simple.
- </p>
-
- <Avatar
- image={userTwoImg}
- name="Dylan Ambrose"
- title="Lead marketer at Netflix"
- />
- </div>
- </div>
- <div className="">
- <div className="flex flex-col justify-between w-full h-full bg-gray-100 px-14 rounded-2xl py-14 dark:bg-trueGray-800">
- <p className="text-2xl leading-normal ">
- This is an <Mark>awesome</Mark> landing page template I&apos;ve seen. I
- would use this for anything.
- </p>
-
- <Avatar
- image={userThreeImg}
- name="Gabrielle Winn"
- title="Co-founder of Acme Inc"
- />
- </div>
- </div>
- </div>
- </Container>
- );
-}
-
-function Avatar(props) {
- return (
- <div className="flex items-center mt-8 space-x-3">
- <div className="flex-shrink-0 overflow-hidden rounded-full w-14 h-14">
- <Image
- src={props.image}
- width="40"
- height="40"
- alt="Avatar"
- placeholder="blur"
- />
- </div>
- <div>
- <div className="text-lg font-medium">{props.name}</div>
- <div className="text-gray-600 dark:text-gray-400">{props.title}</div>
- </div>
- </div>
- );
-}
-
-function Mark(props) {
- return (
- <>
- {" "}
- <mark className="text-indigo-800 bg-indigo-100 rounded-md ring-indigo-100 ring-4 dark:ring-indigo-900 dark:bg-indigo-900 dark:text-indigo-200">
- {props.children}
- </mark>{" "}
- </>
- );
-}
-
-export default Testimonials; \ No newline at end of file
diff --git a/components/video.js b/components/video.js
deleted file mode 100644
index ad5618d..0000000
--- a/components/video.js
+++ /dev/null
@@ -1,42 +0,0 @@
-import { useState } from "react";
-import Container from "./container";
-
-const Video = () => {
- const [playVideo, setPlayVideo] = useState(false);
- return (
- <Container>
- <div className="w-full max-w-4xl mx-auto overflow-hidden lg:mb-20 rounded-2xl ">
- <div
- onClick={() => setPlayVideo(!playVideo)}
- className="relative bg-indigo-300 cursor-pointer aspect-w-16 aspect-h-9 bg-gradient-to-tr from-purple-400 to-indigo-700">
- {!playVideo && (
- <button className="absolute inset-auto w-16 h-16 text-white transform -translate-x-1/2 -translate-y-1/2 lg:w-28 lg:h-28 top-1/2 left-1/2">
- <svg
- xmlns="http://www.w3.org/2000/svg"
- className="w-16 h-16 lg:w-28 lg:h-28"
- viewBox="0 0 20 20"
- fill="currentColor">
- <path
- fillRule="evenodd"
- d="M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z"
- clipRule="evenodd"
- />
- </svg>
- <span className="sr-only">Play Video</span>
- </button>
- )}
- {playVideo && (
- <iframe
- src="https://www.youtube-nocookie.com/embed/aOq49euWnIo?controls=0&autoplay=1"
- title="YouTube video player"
- frameBorder="0"
- allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
- allowfullscreen></iframe>
- )}
- </div>
- </div>
- </Container>
- );
-}
-
-export default Video; \ No newline at end of file