Skip to content

Commit ffe063a

Browse files
committed
feat: add featured on section with title and link to homepage
1 parent 909bc09 commit ffe063a

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

adminforth/documentation/src/pages/index.module.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,19 @@
7575
grid-template-columns: repeat(1, minmax(300px, 500px));
7676
}
7777

78+
}
79+
80+
.featuredOnSection {
81+
padding: 3rem 0 4rem;
82+
text-align: center;
83+
}
84+
85+
.featuredOnTitle {
86+
margin-bottom: 1.5rem;
87+
}
88+
89+
.featuredOnLink {
90+
display: inline-flex;
91+
align-items: center;
92+
justify-content: center;
7893
}

adminforth/documentation/src/pages/index.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,27 @@ export default function Home(): JSX.Element {
326326

327327
<HomepageFeatures />
328328

329+
<section className={styles.featuredOnSection}>
330+
<div className="container">
331+
<Heading as="h2" className={styles.featuredOnTitle}>
332+
Featured on
333+
</Heading>
334+
<a
335+
href="https://auraplusplus.com/projects/adminforth-agent-first-open-source-admin-panel-framework"
336+
target="_blank"
337+
rel="noopener"
338+
className={styles.featuredOnLink}
339+
>
340+
<img
341+
src="https://auraplusplus.com/images/badges/featured-on-light.svg"
342+
alt="Featured on Aura++"
343+
width="265"
344+
height="58"
345+
/>
346+
</a>
347+
</div>
348+
</section>
349+
329350
</main>
330351

331352
</Layout>

0 commit comments

Comments
 (0)