mirror of
https://github.com/SrIzan10/sern-website.git
synced 2026-05-01 11:05:20 +00:00
feat: changes
This commit is contained in:
@@ -22,5 +22,4 @@ Welcome to sern's official guide. This guide will go through all the core featur
|
||||
* [Your first event](walkthrough/first-event.md)
|
||||
|
||||
### Good to know
|
||||
[//]: (Maybe redirect to the sern.config.json section in future)
|
||||
* [sern.config.json](walkthrough/good-to-know.md)
|
||||
|
||||
@@ -128,8 +128,8 @@ const config = {
|
||||
'docusaurus-plugin-typedoc',
|
||||
{
|
||||
//if you're editing website, please change this to your local branch of sern to generate documentation
|
||||
entryPoints: ['C:\\Users\\jacob\\OneDrive\\Desktop\\Projects\\sern\\sernHandlerV2\\src\\index.ts'],
|
||||
tsconfig: 'C:\\Users\\jacob\\OneDrive\\Desktop\\Projects\\sern\\sernHandlerV2\\tsconfig-esm.json',
|
||||
entryPoints: ['../sernHandlerV2/src/index.ts'],
|
||||
tsconfig: '../sernHandlerV2/tsconfig-base.json',
|
||||
},
|
||||
]
|
||||
]
|
||||
|
||||
@@ -8,7 +8,7 @@ import logo from '@site/static/img/sern-logo.png'
|
||||
import styles from './index.module.css';
|
||||
|
||||
function HomepageHeader() {
|
||||
const {siteConfig} = useDocusaurusContext();
|
||||
const { siteConfig } = useDocusaurusContext();
|
||||
return (
|
||||
<header className={clsx('hero hero--primary-darker', styles.heroBanner)}>
|
||||
<div className="container">
|
||||
@@ -31,7 +31,7 @@ export default function Home() {
|
||||
const {siteConfig} = useDocusaurusContext();
|
||||
return (
|
||||
<Layout
|
||||
title={`Hello from ${siteConfig.title}`}
|
||||
title={siteConfig.title}
|
||||
description="Description will go into a meta tag in <head />">
|
||||
<HomepageHeader />
|
||||
<main>
|
||||
|
||||
Reference in New Issue
Block a user