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 src/components/landing/devslatam/Devslatam.astro
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ import { Icon } from "astro-icon";
class="p-4 bg-tc-gray rounded-md flex flex-col justify-center hover:bg-tc-black transition transition-fade duration-300 ease-in-out hover:text-tc-yellow"
>
<Icon class="w-full h-10 text-tc-black-l" name="mdi:github" />
<span class="w-full mt-2 text-center">Documentación</span>
<span class="w-full mt-2 text-center">Docs</span>
</div>
</a>
<a
Expand Down
31 changes: 31 additions & 0 deletions src/components/landing/tryckers/Tryckers.banner.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
import { Icon } from "astro-icon";

const info = {
title: "Tryckers",
};
---

<section>
<div class="px-4 lg:mx-auto lg:max-w-screen-xl">
<div class="bg-tc-black border border-gray-700 rounded-lg p-12 mb-8">
<!--Redes Sociales-->
<div class="mt-5 mb-6">
<div class="flex flex-row text-tc-gray-l text-3xl lg:text-4xl">
<Icon class="w-10 h-10 text-white" name="raphael:people" />
<span class="font-extrabold ml-2">
{info.title}
</span>
</div>
<a href="/tryckers">
<ul class="flex justify-around bg-tc-black-l rounded-md p-5 mt-5">
<span class="text-white text-xl hover:text-tc-yellow">
Conoce a los Tryckers de la comunidad
</span>
</ul>
</a>
</div>
<!--Redes Sociales-->
</div>
</div>
</section>
10 changes: 6 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import Intro from "../components/landing/intro/Intro.astro";
import SocialNetworks from "../components/landing/socialNetworks/SocialNetworks.astro";
import Contact from "../components/landing/contact/Contact.astro";
import Devslatam from "../components/landing/devslatam/Devslatam.astro";
import Intro from "../components/landing/intro/Intro.astro";
import Projects from "../components/landing/projects/Projects.astro";
import Contact from "../components/landing/contact/Contact.astro";
import SocialNetworks from "../components/landing/socialNetworks/SocialNetworks.astro";
import TryckersLanding from "../components/landing/tryckers/Tryckers.banner.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
---

<BaseLayout title="TryCatch.tv">
<!--<Banner />-->
<Intro />
<SocialNetworks />
<TryckersLanding />
<Devslatam />
<Projects />
<Contact />
Expand Down