Skip to content
Merged
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
17 changes: 17 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import {About} from "./components/About";
import {FAQ} from "./components/FAQ";
import {Footer} from "./components/Footer";
import {Hero} from "./components/Hero";
import {HowItWorks} from "./components/HowItWorks";
import {Navbar} from "./components/Navbar";
import {Newsletter} from "./components/Newsletter";
import {ScrollToTop} from "./components/ScrollToTop";
import {Services} from "./components/Services";
import {Sponsors} from "./components/Sponsors";
import {Team} from "./components/Team";
import {Applications} from "./components/Testimonials";
import {About} from "@/containers/About";
import {FAQ} from "@/containers/FAQ";
import {Footer} from "@/layouts/Footer";
import {Hero} from "@/containers/Hero";
import {HowItWorks} from "@/containers/HowItWorks";
import {Navbar} from "@/layouts/Navbar";
import {Newsletter} from "@/containers/Newsletter";
import {ScrollToTop} from "@/components/ScrollToTop";
import {Services} from "@/containers/Services";
import {Sponsors} from "@/containers/Sponsors";
import {Team} from "@/containers/Team";
import {Applications} from "@/containers/Testimonials";
import "./App.css";


Expand All @@ -25,7 +25,7 @@ function App() {
<Applications/>
<Team/>
<Newsletter/>
<FAQ/>
<FAQ/>
<Footer/>
<ScrollToTop/>
</>
Expand Down
2 changes: 1 addition & 1 deletion src/components/mode-toggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
DropdownMenuItem,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import { useTheme } from "@/components/theme-provider";
import { useTheme } from "@/providers/theme-provider";
import { Moon, Sun } from "lucide-react";

export function ModeToggle() {
Expand Down
4 changes: 2 additions & 2 deletions src/components/About.tsx → src/containers/About.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState, useRef } from "react";
import { motion, useInView, AnimatePresence } from "framer-motion";
import { Statistics } from "./Statistics";
import pilot from "../assets/pilot.png";
import { Statistics } from "@/components/Statistics";
import pilot from "@/assets/pilot.png";

export const About = () => {
const sectionRef = useRef(null);
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useRef } from "react";
import { Card, CardContent, CardHeader, CardTitle } from "./ui/card";
import { MedalIcon, MapIcon, PlaneIcon, GiftIcon } from "../components/Icons";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { MedalIcon, MapIcon, PlaneIcon, GiftIcon } from "@/components/Icons";
import { motion, useInView, AnimatePresence } from "framer-motion";

interface FeatureProps {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useRef } from "react";
import { Button } from "./ui/button";
import { Input } from "./ui/input";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { motion, useInView, AnimatePresence } from "framer-motion";

export const Newsletter = () => {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Services.tsx → src/containers/Services.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useRef } from "react";
import { Card, CardDescription, CardHeader, CardTitle } from "./ui/card";
import { ChartIcon, WalletIcon, MagnifierIcon } from "./Icons";
import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { ChartIcon, WalletIcon, MagnifierIcon } from "@/components/Icons";
import cubeLeg from "../assets/cube-leg.png";
import { motion, useInView, AnimatePresence } from "framer-motion";

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Footer.tsx → src/layouts/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useRef } from "react";
import { motion, useInView, AnimatePresence } from "framer-motion";
import { LogoIcon } from "./Icons";
import { LogoIcon } from "../components/Icons";
import { Github, Twitter, Linkedin, Youtube, MessageCircle, Phone } from "lucide-react";

export const Footer = () => {
Expand Down
8 changes: 4 additions & 4 deletions src/components/Navbar.tsx → src/layouts/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import {
} from "@/components/ui/sheet";

import { GitHubLogoIcon } from "@radix-ui/react-icons";
import { buttonVariants } from "./ui/button";
import { buttonVariants } from "@/components/ui/button";
import { Menu } from "lucide-react";
import { ModeToggle } from "./mode-toggle";
import { LogoIcon } from "./Icons";
import { LanguageSwitcher } from "./language"; // Import Language Switcher
import { ModeToggle } from "@/components/mode-toggle";
import { LogoIcon } from "@/components/Icons";
import { LanguageSwitcher } from "@/components/language"; // Import Language Switcher
import { motion, AnimatePresence } from "framer-motion";

interface RouteProps {
Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
import { ThemeProvider } from "@/components/theme-provider.tsx";
import { ThemeProvider } from "@/providers/theme-provider.tsx";
import { LanguageProvider } from "@/components/language.tsx";
import "./i18n";
import "./index.css";
Expand Down
File renamed without changes.