"use client" import React from 'react'; import {Grid, Button, Box, Container, Image, Flex, Center, Text} from "@chakra-ui/react" import { LuMoon, LuSun } from "react-icons/lu"; import { useColorMode } from "@/components/ui/color-mode" import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import { PayPalScriptProvider } from '@paypal/react-paypal-js'; import Payment from './pages/Payment.jsx'; import Success from './pages/Success.jsx'; import Cancel from './pages/Cancel.jsx'; import './App.css'; import logo from '/affordableluxurywatches-logo.svg'; // PayPal configuration const paypalOptions = { "client-id": import.meta.env.VITE_REACT_APP_PAYPAL_CLIENT_ID || "test", currency: "USD", intent: "capture", }; function App() { const { toggleColorMode, colorMode } = useColorMode() return (
React logo {/*
*/} {/* */} {/*
*/}
} /> } /> } /> } />

Page Not Found

The requested page could not be found.

Go to Payment
} />
{import.meta.env.VITE_REACT_APP_STORE_NAME}
); } export default App;