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
2 changes: 1 addition & 1 deletion doc/src/components/features.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Typography from "./general/typography";

const Features = () => {
return (
<div className="p-6 bg-gray-900 shadow-lg rounded-lg md:p-8 lg:p-10">
<div className="p-6 bg-black shadow-lg rounded-lg md:p-8 lg:p-10">
<Typography
variant="h4"
className="mb-6 text-gray-100 text-center md:text-left font-bold"
Expand Down
2 changes: 1 addition & 1 deletion doc/src/components/helloWorld.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { dracula } from 'react-syntax-highlighter/dist/esm/styles/prism';
const HelloWorld = () => {
return (
<div className="p-6 bg-gray-900 shadow-lg rounded-lg md:p-8 lg:p-10">
<div className="p-6 bg-black shadow-lg rounded-lg md:p-8 lg:p-10">
<h3 className="mb-6 text-gray-100">Hello World with Hasty Server</h3>
<p className="mb-6 text-gray-300 leading-relaxed">
Hasty Server allows you to quickly set up a web server.
Expand Down
2 changes: 1 addition & 1 deletion doc/src/components/installation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { dracula } from "react-syntax-highlighter/dist/esm/styles/prism"; // Use

const Installation = () => {
return (
<div className="p-6 bg-gray-900 shadow-lg rounded-lg md:p-8 lg:p-10">
<div className="p-6 bg-black shadow-lg rounded-lg md:p-8 lg:p-10">
<Typography
variant="h4"
className="mb-6 text-gray-100 text-center md:text-left"
Expand Down
2 changes: 1 addition & 1 deletion doc/src/components/introduction.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

const Introduction = () => {
return (
<div className="p-6 bg-gray-900 shadow-lg rounded-lg md:p-8 lg:p-10">
<div className="p-6 bg-black shadow-lg rounded-lg md:p-8 lg:p-10">
<h3 className="mb-6 text-gray-100">Introduction</h3>
<p className="mb-6 text-gray-300 leading-relaxed">
Hasty Server is a lightweight, fast, and easy-to-use web server written entirely in
Expand Down
2 changes: 1 addition & 1 deletion doc/src/components/quick-start.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { coy } from "react-syntax-highlighter/dist/esm/styles/prism";

const QuickStart = () => {
return (
<div className="p-6 bg-gray-900 shadow-lg rounded-lg md:p-8 lg:p-10">
<div className="p-6 bg-black shadow-lg rounded-lg md:p-8 lg:p-10">
<Typography variant="h4" className="mb-6 text-gray-100">
Quick Start
</Typography>
Expand Down
2 changes: 1 addition & 1 deletion doc/src/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Layout = ({ children }) => {
<Header />
<div className="flex flex-1">
<nav
className={`w-48 bg-gray-900 p-4 ${
className={`w-48 bg-black p-4 ${
isNavOpen ? "block" : "hidden"
} md:block`}
>
Expand Down