custom logo styling on index page + adjustments to venue styling and leads

This commit is contained in:
elisejakob
2024-05-10 20:11:04 +02:00
parent ce2de49295
commit d235d3548a
6 changed files with 49 additions and 6 deletions

View File

@ -50,13 +50,13 @@ export default async function Page() {
const { data, error } = await getClient().query(allVenuesQuery, {}); const { data, error } = await getClient().query(allVenuesQuery, {});
const venues = (data?.venues ?? []) as VenueFragment[]; const venues = (data?.venues ?? []) as VenueFragment[];
console.log('data', data) console.log("data", data);
return ( return (
<main className="site-main" id="main"> <main className="site-main" id="main">
<section className="page-header"> <section className="page-header">
<h1>Lokaler</h1> <h1>Lokaler</h1>
<p> <p className="lead">
Her kan vi presentere lokalene Chateau Neuf, og eventuelt henvise Her kan vi presentere lokalene Chateau Neuf, og eventuelt henvise
videre til undersiden om <Link href="/utleie">utleie</Link>. videre til undersiden om <Link href="/utleie">utleie</Link>.
</p> </p>

View File

@ -1,8 +1,13 @@
"use client";
import styles from "./logo.module.scss"; import styles from "./logo.module.scss";
import { usePathname } from "next/navigation";
export const Logo = () => { export const Logo = () => {
// Check if the current page is the index page
const isIndexPage = usePathname() === "/";
return ( return (
<div className={styles.logo}> <div className={`${styles.logo} ${isIndexPage && styles.index}`}>
<svg viewBox="0 0 297 112" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg viewBox="0 0 297 112" fill="none" xmlns="http://www.w3.org/2000/svg">
<title>Chateau Neuf</title> <title>Chateau Neuf</title>
<path <path

View File

@ -1,6 +1,10 @@
.logo { .logo {
color: currentColor; color: currentColor;
width: 24rem; width: 16rem;
&.index {
width: 24rem;
}
svg { svg {
width: 100%; width: 100%;

View File

@ -1,3 +1,32 @@
.venueItem { .venueItem {
position: relative;
list-style: none;
}
.image {
width: 100%;
padding-top: 60%;
background: var(--color-placeholder);
position: relative;
img {
position: absolute;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
}
.text {
padding: .8rem 0;
}
.title,
.details {
font-size: 1.6rem;
}
.details {
font-family: var(--font-serif);
} }

View File

@ -1,3 +1,7 @@
.venueList { .venueList {
display: grid;
grid-template-columns: repeat(3, 1fr);
column-gap: var(--spacing-gap-column);
row-gap: var(--spacing-gap-row);
padding-bottom: var(--spacing-section-bottom);
} }

View File

@ -59,6 +59,7 @@ p {
&.lead { &.lead {
font-size: var(--font-size-lead); font-size: var(--font-size-lead);
max-width: 36em; max-width: 36em;
margin-bottom: 2.5rem;
} }
} }