Ir al contenido

Página estática

LaunchFa.st incluye muchos componentes para ayudarte a construir páginas optimizadas para SEO (como una landing page) en un abrir y cerrar de ojos.

El directorio src/components contiene todo lo que necesitas (hero, precios, FAQ, analítica, prefetching, etc.). Aquí tienes la lista de todos los componentes y temas.

El archivo src/components/SEO.astro te ayuda a establecer las etiquetas SEO para posicionar mejor en Google. Asegúrate de personalizar las etiquetas SEO.

Una landing page sencilla se puede hacer así:

---
// Use this to pre-render on per page basis
export const prerender = true
import SEO from '@/components/SEO.astro'
import Header from '@/components/Header.astro'
import Footer from '@/components/Footer.astro'
import Divider from '@/components/Divider.astro'
import GoogleFonts from '@/components/Google-Fonts.astro'
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<GoogleFonts />
<SEO />
</head>
<body class="font-display">
<Header />
<Divider />
<div class="relative mx-auto flex max-w-7xl flex-col px-8 sm:px-4 py-8">
<h1 class="text-launchfast pb-6 text-3xl font-medium">Privacy Policy</h1>
<div class="leading-relaxed">
Your privacy is important to us. It is LaunchFa.st's policy to respect your privacy regarding any information we may collect from you across our website, and other sites we
own and operate. This policy is effective as of {new Date().toString()}.
</div>
</div>
<Divider />
<Footer twitter="rishi_raj_jain_" brand_name="launchfa.st" />
</body>
</html>