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
2 changes: 1 addition & 1 deletion apps/interinnl/public/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Humans use Keplr on Osmosis. Autonomous agents pay USDC via HTTP 402 (x402 on Ba

- [InterINNL hub email](mailto:contact+innl@interchouette.net): general InterINNL contact
- [AquaChain email](mailto:contact+aquachain@interchouette.net): demo and collaboration questions
- [LinkedIn group](https://www.linkedin.com/groups/42420002/): community and hackathon interest
- [LinkedIn group](https://www.linkedin.com/groups/42420002/): community
- [GitHub org](https://github.com/InterINNL): open-source repositories

## GitHub
Expand Down
10 changes: 0 additions & 10 deletions apps/interinnl/src/app/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const interinnlContent = {
{ value: 2, suffix: '', label: 'countries' },
{ value: 50, suffix: '+', label: 'members' },
{ value: 1, suffix: '', label: 'project live' },
{ value: 0, suffix: '', label: 'first hackathon', display: 'Soon' },
],
stories: [
{
Expand Down Expand Up @@ -204,15 +203,6 @@ export const interinnlContent = {
note: 'An InterINNL open-source project.',
},
],
events: {
badge: 'Coming soon',
title: 'AquaChain Hackathon I',
blurb:
'48 hours to build tech for water challenges with AI, LLMs, IoT and blockchain. India and the Netherlands, remote + Amsterdam. Public GitHub output. Real problems, not slides.',
when: 'Date to be announced',
ctaLabel: 'Register interest',
ctaHref: linkedinGroup,
},
founders: [
{
name: 'Gregory Roussac',
Expand Down
1 change: 0 additions & 1 deletion apps/interinnl/src/app/footer/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ <h3>Navigate</h3>
<a href="#mission">Mission</a>
<a href="#people">People</a>
<a href="#projects">Projects</a>
<a href="#events">Events</a>
<a href="#founders">Founders</a>
<a href="#join">Join</a>
</div>
Expand Down
18 changes: 0 additions & 18 deletions apps/interinnl/src/app/landing/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,24 +130,6 @@ <h2>{{ aquachain.name }}</h2>
</div>
</section>

<section id="events" class="innl-events">
<div class="innl-events__inner">
<article class="innl-event-card">
<span class="innl-event-card__badge">{{ content.events.badge }}</span>
<h2>{{ content.events.title }}</h2>
<p class="innl-event-card__when">{{ content.events.when }}</p>
<p>{{ content.events.blurb }}</p>
<a
class="innl-btn innl-btn--primary"
[href]="content.events.ctaHref"
rel="noopener noreferrer"
target="_blank"
>{{ content.events.ctaLabel }}</a
>
</article>
</div>
</section>

<innl-founders />

<innl-social-tease />
Expand Down
42 changes: 0 additions & 42 deletions apps/interinnl/src/app/landing/landing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -302,48 +302,6 @@
gap: 0.75rem;
}

.innl-events {
padding: 3.5rem 1.25rem 4.5rem;
background: color-mix(in srgb, var(--innl-saffron) 8%, #fff);
}

.innl-events__inner {
max-width: 40rem;
margin: 0 auto;
}

.innl-event-card {
padding: 2rem 1.5rem;
border-radius: 0.85rem;
background: #fff;
border: 1px solid color-mix(in srgb, var(--innl-saffron) 35%, transparent);
}

.innl-event-card__badge {
display: inline-block;
padding: 0.25rem 0.65rem;
border-radius: 999px;
background: var(--innl-saffron-light);
color: color-mix(in srgb, var(--innl-saffron) 40%, #000);
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.innl-event-card h2 {
font-family: var(--innl-display);
font-size: clamp(1.5rem, 3vw, 1.9rem);
margin: 0.85rem 0 0.35rem;
}

.innl-event-card__when {
margin: 0 0 1rem;
font-size: 0.9rem;
font-weight: 600;
opacity: 0.7;
}

.innl-join-band {
background: var(--innl-india-green);
color: #fff;
Expand Down
2 changes: 0 additions & 2 deletions apps/interinnl/src/app/nav/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
<a href="#mission">Mission</a>
<a href="#people">People</a>
<a href="#projects">Projects</a>
<a href="#events">Events</a>
<a href="#founders">Founders</a>
<a href="#join">Join</a>
<a class="innl-nav__cta" href="/aquachain/">AquaChain</a>
Expand Down Expand Up @@ -48,7 +47,6 @@
<a href="#mission" (click)="close()">Mission</a>
<a href="#people" (click)="close()">People</a>
<a href="#projects" (click)="close()">Projects</a>
<a href="#events" (click)="close()">Events</a>
<a href="#founders" (click)="close()">Founders</a>
<a href="#join" (click)="close()">Join</a>
<a class="innl-nav__cta" href="/aquachain/" (click)="close()">AquaChain</a>
Expand Down
3 changes: 0 additions & 3 deletions apps/interinnl/src/app/stats/stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ export class StatsRibbon implements AfterViewInit, OnDestroy {
}

label(stat: (typeof interinnlContent.stats)[number]): string {
if ('display' in stat && stat.display) {
return stat.display;
}
return `${stat.value}${stat.suffix}`;
}
}
Loading