commit changes

This commit is contained in:
Anton Kupriianov 2025-05-07 13:26:37 -07:00
parent dd9b9c4ad6
commit 86c4325c10
2 changed files with 5 additions and 8 deletions

View file

@ -2,10 +2,12 @@ import React from "react";
import "../scss/components/_services.scss"; import "../scss/components/_services.scss";
import ServiceCard from "../components/ServicesCard.jsx"; import ServiceCard from "../components/ServicesCard.jsx";
import { FaYoutube } from "react-icons/fa"; import { FaYoutube } from "react-icons/fa";
import battlesnakeLogo from "../../public/images/battlesnake.png";
import bytecampLogo from "../../public/images/bytecamp.png";
// Using URL references for public assets instead of direct imports // // Using URL references for public assets instead of direct imports
const battlesnakeLogo = "/images/battlesnake.png"; // const battlesnakeLogo = "/images/battlesnake.png";
const bytecampLogo = "/images/bytecamp.png"; // const bytecampLogo = "/images/bytecamp.png";
function Services() { function Services() {
return ( return (

View file

@ -32,12 +32,7 @@ function SignUpForm() {
}; };
const googleAuth = () => { const googleAuth = () => {
<<<<<<< HEAD
window.open(authUrl, "_self");
=======
window.open(`${authUrl}/auth/google`, "_self"); window.open(`${authUrl}/auth/google`, "_self");
>>>>>>> refs/remotes/origin/homepage-2nd-sprint
}; };
return ( return (