Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

fix: update simple landing page #2

Merged
merged 1 commit into from
Jun 4, 2024
Merged
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
76 changes: 38 additions & 38 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,44 +131,44 @@ const config: Config = {
],
},
footer: {
links: [
{
title: "Docs",
items: [
{
label: "Tutorial",
to: "/",
},
],
},
{
title: "Community",
items: [
{
label: "Stack Overflow",
href: "https://stackoverflow.com/questions/tagged/docusaurus",
},
{
label: "Discord",
href: "https://discordapp.com/invite/docusaurus",
},
{
label: "Twitter",
href: "https://twitter.com/docusaurus",
},
],
},
{
title: "More",
items: [
{
label: "GitHub",
href: "https://github.com/facebook/docusaurus",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`,
// links: [
// {
// title: "Docs",
// items: [
// {
// label: "Tutorial",
// to: "/",
// },
// ],
// },
// {
// title: "Community",
// items: [
// {
// label: "Stack Overflow",
// href: "https://stackoverflow.com/questions/tagged/docusaurus",
// },
// {
// label: "Discord",
// href: "https://discordapp.com/invite/docusaurus",
// },
// {
// label: "Twitter",
// href: "https://twitter.com/docusaurus",
// },
// ],
// },
// {
// title: "More",
// items: [
// {
// label: "GitHub",
// href: "https://github.com/facebook/docusaurus",
// },
// ],
// },
// ],
copyright: `Copyright © ${new Date().getFullYear()} Homebrew Computer Company Pte Ltd.`,
},
prism: {
theme: prismThemes.github,
Expand Down
9 changes: 2 additions & 7 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,8 @@ const Home = () => {
return (
<Layout title="Homepage">
<main>
<div className="container">
<p className="text-red-700">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Distinctio, quia nemo deleniti eos placeat, voluptatibus, facilis
voluptatum ipsam rem cum sapiente praesentium iusto laudantium!
Illum quia atque quam impedit sequi.
</p>
<div className="container mt-8">
<p>Cortex is under construction</p>
</div>
</main>
</Layout>
Expand Down
Loading