diff --git a/src/components/TitlePage.js b/src/components/TitlePage.js index 536901ff..63ce5b88 100644 --- a/src/components/TitlePage.js +++ b/src/components/TitlePage.js @@ -1,55 +1,89 @@ import React, { useState } from "react"; -import { useAuth0 } from "@auth0/auth0-react"; +import { useQuery } from 'react-query' import "./TitlePage.css"; // Import the CSS file for styling import LoginButton from "./LoginButton"; // Import the LoginButton component import Header from "./Header"; import LogoMain from "./LogoMain.png"; -import { Button, Modal } from "react"; import RegisterBusinessForm from "./RegisterBusinessForm"; -import Footer from "./Footer"; +import getUserRequest from "../api/getUserRequest"; -function TitlePage({ setShowPosts }) { +function TitlePage({ setShowPosts, username }) { // State to track whether sign-up button is clicked const [isButtonsClicked, setIsButtonsClicked] = useState(false); + const { isLoading, data: user} = useQuery(['user', username], (username) => getUserRequest(username)) + if (!isLoading){ + console.log(user) + } + const handleSignUpClick = () => { + setIsButtonsClicked(true); + }; - const handleSignUpClick = () => { - setIsButtonsClicked(true); - }; - - return ( -
Where Every Bite Gets a Second Chance to Make a First Impression.
-FreshSave is a platform dedicated to providing affordable grocery items to non-profit organizations. Our mission is to empower non-profits with cost-effective solutions, enabling them to create nutritious meals for individuals and families in need.
-At FreshSave, we understand the importance of accessibility to fresh and wholesome ingredients, especially for organizations dedicated to serving communities facing food insecurity. Through our platform, non-profits gain access to a wide range of grocery items at discounted rates, making it easier for them to procure essential ingredients for their meal programs and initiatives.
-We believe that every individual deserves access to nourishing food, and we are committed to supporting non-profits in their efforts to alleviate hunger and food insecurity. By offering affordable grocery items, FreshSave enables non-profit organizations to stretch their budgets further, maximizing their impact and reach within their communities.
-Our platform fosters collaboration and partnership between non-profits, suppliers, and donors, creating a network of support dedicated to addressing food insecurity at its core. Together, we can make a meaningful difference in the lives of those facing hunger and food insecurity, one meal at a time.
-Join us in our mission to create a world where no one goes hungry, where every bite has the power to nourish, uplift, and inspire hope. Together, let's make a positive impact and build a brighter future for individuals and families in need. Welcome to FreshSave, where every meal begins with compassion and ends with hope.
-+ Where Every Bite Gets a Second Chance to Make a First Impression. +
++ FreshSave is a platform dedicated to providing affordable grocery + items to non-profit organizations. Our mission is to empower + non-profits with cost-effective solutions, enabling them to create + nutritious meals for individuals and families in need. +
++ At FreshSave, we understand the importance of accessibility to fresh + and wholesome ingredients, especially for organizations dedicated to + serving communities facing food insecurity. Through our platform, + non-profits gain access to a wide range of grocery items at + discounted rates, making it easier for them to procure essential + ingredients for their meal programs and initiatives. +
++ We believe that every individual deserves access to nourishing food, + and we are committed to supporting non-profits in their efforts to + alleviate hunger and food insecurity. By offering affordable grocery + items, FreshSave enables non-profit organizations to stretch their + budgets further, maximizing their impact and reach within their + communities. +
++ Our platform fosters collaboration and partnership between + non-profits, suppliers, and donors, creating a network of support + dedicated to addressing food insecurity at its core. Together, we + can make a meaningful difference in the lives of those facing hunger + and food insecurity, one meal at a time. +
++ Join us in our mission to create a world where no one goes hungry, + where every bite has the power to nourish, uplift, and inspire hope. + Together, let's make a positive impact and build a brighter future + for individuals and families in need. Welcome to FreshSave, where + every meal begins with compassion and ends with hope. +
+