Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spline #829

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 1 addition & 65 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,6 @@ import Review from "./Component/Review";

import AOS from "aos";
import "aos/dist/aos.css";



import Review from "./Component/Review.js";


import Review from "./Component/Review";

import AOS from "aos";
import "aos/dist/aos.css";
import { Toaster } from "react-hot-toast";


Expand All @@ -42,12 +32,9 @@ import Extension from "./pages/Extension";
import UI from "./pages/UI";
import FrontendTools from "./pages/FrontendTools";
import EthicalHacking from "./pages/EthicalHacking";
import CodingPlateform from "./pages/CodingPlatform.jsx";
import CodingPlateform from "./pages/CodingPlateform.jsx";
import CourcesPlatform from "./pages/CoursesPlatform.jsx";


import Faq from "./Component/Faq";

function App() {
const [searchQuery, setSearchQuery] = useState("");
AOS.init();
Expand Down Expand Up @@ -80,57 +67,6 @@ function App() {
<ChatAssistant /> <Footer />
</>

import CoursesPlatform from "./pages/CoursesPlatform";
import Productivity from "./pages/Productivity";
import Collaboration from "./pages/Collaboration";
import CodingPlatform from "./pages/CodingPlateform";



import "aos/dist/aos.css";

function App() {

import CodingPlateform from "./pages/CodingPlateform";

function App() {
const [searchQuery, setSearchQuery] = useState("");
AOS.init();
return (
<>
<ScrollToTop />
<Navbar setSearchQuery={setSearchQuery} />
<Routes>
<Route path="/" element={<Home searchQuery={searchQuery} />} />
<Route path="/bookmark" element={<BookMark />} />
<Route path="/about" element={<About />} />
<Route path="/open-source" element={<OpenSource />} />
<Route path="/review" element={<Review />} />
<Route path="/faq" element={<Faq />} />
<Route path="/rateus" element={<Rateus />} />
<Route path="/remote-jobs" element={<RemoteJobs />} />
<Route path="/ai" element={<AI />} />
<Route path="/movies-series" element={<Movie />} />
<Route path="/extension" element={<Extension />} />
<Route path="/ui-design" element={<UI />} />
<Route path="/front-end-tools" element={<FrontendTools />} />
<Route path="/ethical-hacking" element={<EthicalHacking />} />
<Route path="/coding-platform" element={<CodingPlatform />} />
<Route path="/cources-platform" element={<CoursesPlatform />} />
<Route path="/coding-platform" element={<CodingPlatform />} />


<Route path="/courses-platform" element={<CoursesPlatform />} />

<Route path="/productivity-tools" element={<Productivity />} />
<Route path="/collaboration-tools" element={<Collaboration />} />
<Route path="*" element={<NotFound />} /> {/* 404 route */}
</Routes>
<BackToTopButton />
<Toaster />
<Footer />
<ChatAssistant />
</>

);
}
Expand Down
1 change: 0 additions & 1 deletion frontend/src/Component/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
import logo from "../image/logo.png";
import "../style/Footer.css";

import { FaGithubSquare, FaTwitter } from "react-icons/fa";
import { BsLinkedin } from "react-icons/bs";

import { FaGithubSquare, FaLinkedin, FaTwitter } from "react-icons/fa";
Expand Down
9 changes: 8 additions & 1 deletion frontend/src/DB/product.json
Original file line number Diff line number Diff line change
Expand Up @@ -2952,7 +2952,14 @@
"image": "webflow.jpg",
"link": "https://webflow.com/",
"description": "Webflow is a free no-code web designing tool where you can build beautiful websites with ease and publish them."
}
},
{
"productName": "Spline3D",
"category": "UI",
"image": "https://www.bookmarks.design/media/image/spline-design.jpg",
"link": "https://spline3d.com/",
"description": "Spline3D is a cutting-edge UI design tool that enables you to create stunning 3D interfaces effortlessly. It offers a range of powerful features for building interactive and visually captivating 3D designs, making it perfect for enhancing user engagement and experience."
}



Expand Down
3 changes: 0 additions & 3 deletions frontend/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ root.render(
<Provider store={store}>p
<BrowserRouter> {/* Ensure BrowserRouter is only here */}
<App />
<BrowserRouter>
<App />

<ToastContainer />
</BrowserRouter>
</Provider>
Expand Down
Loading