feat: implement skeleton layout for settings and search pages (#366)

Co-authored-by: Lê Nhân Phụng <lenhanphung@Phung-Mac-M4.local>
This commit is contained in:
lenhanphung
2025-11-27 17:38:54 +07:00
committed by GitHub
parent d71f941fe4
commit 6fcf22a1cf
6 changed files with 45 additions and 9 deletions
@@ -0,0 +1,9 @@
import React from "react";
export default function SearchResultsPage() {
return (
<main className="main-layout search-layout">
<h1>Search Results</h1>
</main>
);
}