Skip to content

Commit 180378f

Browse files
committed
Remove unused code
1 parent e194c48 commit 180378f

File tree

2 files changed

+7
-44
lines changed

2 files changed

+7
-44
lines changed

src/components/landing/Landing.astro

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@ import Footer from "./Footer.astro";
44
import Hero from "./Hero.astro";
55
import Testimonial from "./Testimonial.astro";
66
import GetStarted from "./GetStarted.astro";
7-
import SeeTheMagic from "./SeeTheMagic.astro";
87
import Mascot from "./Mascot.astro";
98
---
109

1110
<div
12-
class="relative min-h-screen bg-[radial-gradient(circle_at_50%_120%,#2a0450,#131033,#000)] backdrop-filter backdrop-opacity-90"
11+
class="relative min-h-screen bg-[radial-gradient(circle_at_50%_120%,#2a0450,#131033,#000)] backdrop-filter backdrop-opacity-90"
1312
>
14-
<Hero />
15-
<Features />
16-
<Mascot />
17-
<GetStarted />
18-
<Testimonial />
19-
<Footer />
13+
<Hero />
14+
<Features />
15+
<Mascot />
16+
<GetStarted />
17+
<Testimonial />
18+
<Footer />
2019
</div>

src/components/landing/TestimonialCarousel.tsx

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,6 @@
11
import { useEffect, useState } from "react";
22
import { testimonials } from "../../utils/Testimonials"
33

4-
// const testimonials2: Testimonial[] = [
5-
// {
6-
// id: 1,
7-
// name: "Sarah Enchanter",
8-
// role: "Senior Spellcaster",
9-
// avatar: "https://placehold.co/600x400",
10-
// quote:
11-
// "Siacaraa has revolutionized our magical code transformations. The enchanted functions are pure wizardry!",
12-
// },
13-
// {
14-
// id: 2,
15-
// name: "Marcus Thaumaturge",
16-
// role: "Code Alchemist",
17-
// avatar: "https://placehold.co/600x400",
18-
// quote:
19-
// "The performance improvements are truly mystical. Our spells execute faster than ever before.",
20-
// },
21-
// {
22-
// id: 3,
23-
// name: "Luna Codebinder",
24-
// role: "Arcane Developer",
25-
// avatar: "https://placehold.co/600x400",
26-
// quote:
27-
// "The elegant syntax feels like writing in an ancient spellbook. Simply magical!",
28-
// },
29-
// {
30-
// id: 4,
31-
// name: "Eldrich Bytecraft",
32-
// role: "Magic Systems Architect",
33-
// avatar: "https://placehold.co/600x400",
34-
// quote:
35-
// "Finally, a framework that understands the art of computational sorcery. Outstanding work!",
36-
// },
37-
// ];
38-
39-
404
function TestimonialCarousel() {
415
const [currentIndex, setCurrentIndex] = useState(0);
426
const [isAnimating, setIsAnimating] = useState(false);

0 commit comments

Comments
 (0)