Skip to content
Open
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
8 changes: 4 additions & 4 deletions _headers
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cache static resources for 10 months
# Cache static resources for 1 year
/*.js
/*.css
/*.woff2
Expand All @@ -7,11 +7,11 @@
/*.webp
/*.gif
/*.svg
Cache-Control: public, max-age=25920000
Cache-Control: public, max-age=31536000, immutable

# Cache HTML files for 10 months
# HTML files - no cache
/*.html
Cache-Control: public, max-age=25920000
Cache-Control: public, max-age=0



6 changes: 3 additions & 3 deletions src/sections/Home/Banner-1/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Banner1 = (props) => {
return (
<Banner1SectionWrapper {...props} >
<Container >
<img loading="eager" alt="hero-image" src={Backgroundsvg} className="background-svg" />
<img loading="eager" fetchpriority="high" alt="hero-image" src={Backgroundsvg} className="background-svg" />
<Row>
<Col $sm={8} $lg={8} className="section-title-wrapper">

Expand All @@ -26,11 +26,11 @@ const Banner1 = (props) => {
>
<h1>Cloud Native Management</h1>
<h2>
of <span>developer</span>-defined infrastructure
of <span>developer</span>-defined infrastructure
</h2>
</SectionTitle>
<p>
an open source-first community of cloud native engineers
an open source-first community of cloud native engineers
</p>
<span className="vintage-box-container">
<VintageBox $right={true} $vintageOne={true}>
Expand Down
1 change: 1 addition & 0 deletions src/sections/Home/Partners-home/partnerSection.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import styled from "styled-components";
const PartnerItemWrapper = styled.section`
padding: 2rem 0;
margin: 0rem 0rem 5rem 0rem;
min-height: 200px; /* Prevent layout shift (CLS) by reserving space for partner logos */
overflow: hidden;
.section-title{
h4{
Expand Down