Refactor frontend components and backend migrations

- Removed TradingGraph component from frontend/src/components/trading.
- Updated home page to import Services component and TradingGraph from new path.
- Modified PortfolioPage to return null instead of PortfolioGrid.
- Added initial migrations for account, advertisement, commerce, configuration, downloader, gopay, stripe, trading212, and zasilkovna apps in the backend.
- Created Services component with subcomponents for Kinematografie, Drone Service, and Website Service.
- Implemented TradingGraph component with dynamic data generation and canvas rendering.
- Updated DonationShop component to display donation tiers with icons and descriptions.
This commit is contained in:
2025-12-14 03:49:16 +01:00
parent 564418501c
commit 1751badb90
40 changed files with 796 additions and 165 deletions

View File

@@ -1,10 +1,11 @@
import { useEffect } from "react";
import PortfolioGrid from "../../components/portfolio/PortfolioGrid";
import TradingGraph from "../../components/trading/TradingGraph";
import DonationShop from "../../components/donate/DonationShop";
import PortfolioGrid from "./components/Services/Services";
import TradingGraph from "./components/Services/TradingGraph";
import DonationShop from "./components/donate/DonationShop";
import ContactMeForm from "../../components/Forms/ContactMe/ContactMeForm";
import Services from "../../components/services/Services";
export default function Home() {
// Optional: keep spark effect for fun
useEffect(() => {