Skip to content

Commit

Permalink
www: v1.0.0
Browse files Browse the repository at this point in the history
* www: Rework devices page
* www: Add screenshots section
* www: Add Japanese metadata translation
* www: Add /ja routing for Japanese
* www: Add Japanese translation
* www: next.config.ts -> next.config.js

Change-Id: Iff8a160fc7eb3e2ddf8e8d7f02de837d75b78f6d
Signed-off-by: neroices <[email protected]>
  • Loading branch information
neroices committed Feb 16, 2025
1 parent 91c2361 commit dcdfebf
Show file tree
Hide file tree
Showing 42 changed files with 1,095 additions and 542 deletions.
40 changes: 20 additions & 20 deletions components.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
32 changes: 16 additions & 16 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
baseDirectory: __dirname,
});

const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
];

export default eslintConfig;
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
baseDirectory: __dirname,
});

const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
];

export default eslintConfig;
9 changes: 9 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
unoptimized: true,
},
reactStrictMode: true,
};

module.exports = nextConfig;
10 changes: 0 additions & 10 deletions next.config.ts

This file was deleted.

Loading

0 comments on commit dcdfebf

Please sign in to comment.