Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
harumiWeb committed Jan 10, 2025
1 parent 6b8e39a commit 450aa81
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
run: |
choco install nasm
echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
cmake -G "Visual Studio 16 2019" [...]
- name: install frontend dependencies
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion app/components/WindowMenu/WindowMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function WindowMenu() {
className="titlebar-button hover:bg-red-400 w-[40px] h-[30px] flex justify-center items-center cursor-pointer transition-colors duration-150"
id="titlebar-close"
>
<CloseOutlined />
<CloseOutlined title="Close"/>
</div>
</div>
</div>
Expand Down
9 changes: 6 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Roboto } from "next/font/google";
import "./globals.css";
import WindowMenu from "./components/WindowMenu/WindowMenu";
import type { Metadata } from "next";
import { Suspense } from "react";

const roboto = Roboto({
weight: ["100", "300", "400", "500", "700", "900"],
Expand All @@ -19,10 +20,12 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<html lang="en">
<body className={`${roboto.className} antialiased`}>
<WindowMenu />
<main>{children}</main>
<Suspense fallback={<div>Loading...</div>}>
<WindowMenu />
<main>{children}</main>
</Suspense>
</body>
</html>
);
Expand Down
1 change: 0 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import type { NextConfig } from "next";

const nextConfig: NextConfig = {
output: "export",
reactStrictMode: false,
};

export default nextConfig;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
Expand Down
2 changes: 0 additions & 2 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import type { Config } from "tailwindcss";

export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
Expand Down

0 comments on commit 450aa81

Please sign in to comment.