mirror of
https://github.com/sern-handler/website
synced 2026-06-06 01:16:47 +00:00
ya
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -14,7 +14,7 @@
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
.yarn/install-state.gz
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
Binary file not shown.
@@ -107,6 +107,7 @@ const config = {
|
||||
label: 'GitHub',
|
||||
position: 'right',
|
||||
},
|
||||
{ to: "/sponsors", label: "Sponsor", position: "left" },
|
||||
{
|
||||
to: '/plugins',
|
||||
label: 'Plugins',
|
||||
|
||||
@@ -48,13 +48,10 @@ export default function Home() {
|
||||
return (
|
||||
<Layout
|
||||
title="sern - Handlers. Redefined."
|
||||
description="Description will go into a meta tag in"
|
||||
>
|
||||
description="Description will go into a meta tag in">
|
||||
<HomepageHeader/>
|
||||
<main className='user-select-none'>
|
||||
<div>
|
||||
<HomepageFeatures/>
|
||||
</div>
|
||||
</main>
|
||||
</Layout>
|
||||
);
|
||||
|
||||
22
src/pages/sponsors.js
Normal file
22
src/pages/sponsors.js
Normal file
@@ -0,0 +1,22 @@
|
||||
import { useEffect } from "react"
|
||||
import clsx from 'clsx';
|
||||
|
||||
import './sponsors.module.css';
|
||||
import Layout from '@theme/Layout';
|
||||
export default function ( ) {
|
||||
|
||||
const url = `https://opencollective.com/sern/banner.html?limit=10&id=banner-iframe-3759&style={}&useNewFormat=true`
|
||||
return (
|
||||
<Layout>
|
||||
<header>
|
||||
<h1 className={"hero__title"}>
|
||||
Sponsor
|
||||
</h1>
|
||||
</header>
|
||||
<iframe
|
||||
src={url}
|
||||
height="400"
|
||||
scrolling>
|
||||
</iframe>
|
||||
</Layout>)
|
||||
}
|
||||
5
src/pages/sponsors.module.css
Normal file
5
src/pages/sponsors.module.css
Normal file
@@ -0,0 +1,5 @@
|
||||
.container {
|
||||
max-width: fit-content;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
Reference in New Issue
Block a user