mirror of
https://github.com/chaoming/hugo-saasify-theme.git
synced 2025-04-21 02:41:52 +02:00
Update theme files and layouts
This commit is contained in:
parent
848d41b5af
commit
27b4ffbec1
2 changed files with 9 additions and 31 deletions
|
@ -15,7 +15,12 @@
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap" rel="stylesheet">
|
||||||
|
|
||||||
<!-- Main CSS -->
|
<!-- Main CSS -->
|
||||||
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}">
|
{{ $css := resources.Get "css/main.css" }}
|
||||||
|
{{ $css = $css | resources.PostCSS }}
|
||||||
|
{{ if hugo.IsProduction }}
|
||||||
|
{{ $css = $css | minify | fingerprint | resources.PostProcess }}
|
||||||
|
{{ end }}
|
||||||
|
<link rel="stylesheet" href="{{ $css.RelPermalink }}">
|
||||||
</head>
|
</head>
|
||||||
<body class="flex flex-col min-h-screen">
|
<body class="flex flex-col min-h-screen">
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
|
|
|
@ -1,35 +1,8 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<!-- Hero Section -->
|
<!-- Hero Section -->
|
||||||
<section class="relative overflow-hidden bg-gradient-to-b from-gray-50 to-white">
|
{{ if .Content }}
|
||||||
<div class="container pt-16 pb-20 md:pt-24 md:pb-28">
|
{{ .Content }}
|
||||||
<div class="grid lg:grid-cols-2 gap-12 items-center">
|
{{ end }}
|
||||||
<div class="space-y-8">
|
|
||||||
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight">
|
|
||||||
Unlock the Hidden Revenue in Your User Journeys
|
|
||||||
</h1>
|
|
||||||
<p class="text-xl text-gray-600">
|
|
||||||
Transform your user experience with powerful analytics and insights that drive growth and engagement.
|
|
||||||
</p>
|
|
||||||
<div class="flex flex-col sm:flex-row gap-4">
|
|
||||||
<a href="#" class="btn-primary text-center">
|
|
||||||
Get Started Free
|
|
||||||
</a>
|
|
||||||
<a href="#" class="btn-outline text-center">
|
|
||||||
Schedule Demo
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="relative">
|
|
||||||
<div class="relative z-10">
|
|
||||||
<img src="{{ "images/hero-dashboard.svg" | relURL }}" alt="Analytics Dashboard" class="rounded-xl shadow-elevation">
|
|
||||||
</div>
|
|
||||||
<!-- Background decoration -->
|
|
||||||
<div class="absolute -top-20 -right-20 w-64 h-64 bg-primary-100 rounded-full filter blur-3xl opacity-50"></div>
|
|
||||||
<div class="absolute -bottom-20 -left-20 w-64 h-64 bg-secondary-100 rounded-full filter blur-3xl opacity-50"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!-- Client Logos -->
|
<!-- Client Logos -->
|
||||||
<section class="border-y border-gray-100">
|
<section class="border-y border-gray-100">
|
||||||
|
|
Loading…
Add table
Reference in a new issue