Skip to content

Commit 7fb06b3

Browse files
committed
simplify home
1 parent edb6460 commit 7fb06b3

File tree

3 files changed

+3
-122
lines changed

3 files changed

+3
-122
lines changed

junction-app/app/page.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import { Demo } from "@/components/landing/Demo";
22
import { Hero } from "@/components/landing/Hero";
33
import { LandingFooter } from "@/components/landing/Footer";
4-
import { TrustScore } from "@/components/landing/TrustScore";
54

65
export default function Home() {
76
return (
87
<main className="bg-zinc-950 text-white">
98
<Hero />
109
<Demo />
11-
<TrustScore />
1210
<LandingFooter />
1311
</main>
1412
);

junction-app/components/landing/Hero.tsx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import { ArrowRight, Sparkles } from "lucide-react";
3+
import { ArrowRight, Hammer } from "lucide-react";
44

55
const stats = [
66
{
@@ -45,8 +45,8 @@ export function Hero() {
4545
<div className="relative mx-auto max-w-7xl">
4646
<div className="max-w-5xl">
4747
<div className="mb-8 inline-flex items-center gap-2 rounded-full border border-white/10 bg-white/5 px-4 py-2 text-sm text-white/80 backdrop-blur-sm">
48-
<Sparkles className="size-4 text-emerald-400" />
49-
AI-powered security intelligence
48+
<Hammer className="size-4 text-emerald-400" />
49+
Built at the Junction Helsinki Hackathon 2025
5050
</div>
5151

5252
<h1 className="mb-8 text-5xl leading-[0.95] tracking-tight md:text-7xl lg:text-8xl">
@@ -70,12 +70,6 @@ export function Hero() {
7070
Start assessment
7171
<ArrowRight className="ml-2 size-5 transition group-hover:translate-x-1" />
7272
</button>
73-
<a
74-
href="#demo"
75-
className="flex h-14 items-center justify-center rounded-full border border-white/10 px-10 text-base text-zinc-300 transition hover:bg-white/5 hover:text-white"
76-
>
77-
View example report
78-
</a>
7973
</div>
8074
</div>
8175

junction-app/components/landing/TrustScore.tsx

Lines changed: 0 additions & 111 deletions
This file was deleted.

0 commit comments

Comments
 (0)