/** * @license * SPDX-License-Identifier: Apache-2.0 */ import { BrowserRouter, Routes, Route } from "react-router-dom"; import Navbar from "./components/Navbar"; import Footer from "./components/Footer"; // Multi-page routing views import Home from "./pages/Home"; import Features from "./pages/Features"; import FAQ from "./pages/FAQ"; import Contact from "./pages/Contact"; import Support from "./pages/Support"; import Privacy from "./pages/Privacy"; export default function App() { const DOWNLOAD_URL = "https://huggingface.co/embedingHF/AFC/resolve/main/AllFileConverter_Setup.exe"; return (
{/* Decorative top grid lines/accents */}
{/* Grid Pattern */}
{/* Sticky glassmorphic navbar */} {/* Main routing content layout */}
} /> } /> } /> } /> } /> } />
{/* Footer directories and legal disclosures */}
); }