diff --git a/src/App.tsx b/src/App.tsx index 6b701ab..4d8a785 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,8 +5,8 @@ import FeaturesComparison from '@/components/sections/features/FeaturesCompariso import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; +import RecentWorks from '@/components/sections/works/RecentWorks'; import NavbarCentered from '@/components/ui/NavbarCentered'; -import logoImg from "@/assets/logo.svg"; import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; import { Droplets, Flame, Wrench } from "lucide-react"; import { useEffect } from "react"; @@ -21,10 +21,10 @@ export default function App() { }, []); return ( -
+
+
+ +
+
{ + return ( +
+
+
+ Our Portfolio + + + + +
+ +
+ {works.map((work, index) => ( +
+ {work.alt} +
+ ))} +
+
+
+ ); +}; + +export default RecentWorks; \ No newline at end of file diff --git a/src/index.css b/src/index.css index 09a346b..6d5b001 100644 --- a/src/index.css +++ b/src/index.css @@ -1,4 +1,4 @@ -@import url('https://fonts.googleapis.com/css2?family=${inter.variable}+${openSans.variable}:wght@400;500;600;700&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap'); @import "tailwindcss"; @import "./styles/masks.css"; @import "./styles/animations.css"; @@ -88,7 +88,7 @@ --color-background-accent: var(--background-accent); /* Fonts */ - --font-sans: '${inter.variable} ${openSans.variable}', sans-serif; + --font-sans: 'Inter', 'Open Sans', sans-serif; --font-mono: monospace; /* Border Radius */ @@ -134,33 +134,18 @@ html { body { margin: 0; - background-color: var(--background); color: var(--foreground); - font-family: '${inter.variable} ${openSans.variable}', sans-serif; + font-family: 'Inter', 'Open Sans', sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; overscroll-behavior-y: none; + background: linear-gradient(60deg, var(--background) 0%, var(--background-accent) 50%, var(--background) 100%); + background-size: 200% 200%; + animation: moveGradient 15s ease infinite; } .app-container { - position: relative; - isolation: isolate; -} - -.app-container::before { - content: ""; - position: fixed; - inset: 0; - z-index: -1; - background: linear-gradient( - 60deg, - var(--background) 0%, - var(--accent) 50%, - var(--background) 100% - ); - background-size: 400% 400%; - animation: moveGradient 15s ease infinite; } h1, @@ -169,7 +154,7 @@ h3, h4, h5, h6 { - font-family: '${inter.variable} ${openSans.variable}', sans-serif; + font-family: 'Inter', 'Open Sans', sans-serif; } button {