Skip to content

Commit f615706

Browse files
authored
add: html_code in page.tsx
1 parent 0b7346e commit f615706

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/page.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ import Header from "@/components/header";
44
import Sidebar from "@/components/sidebar";
55
import PreviewScreen from "@/components/preview"; // Add this import or adjust it to the correct path
66

7-
const html_code = "<p>Preview example!</p>";
87
export default function Home() {
98
const [authenticated, setAuthenticated] = useState(false); // Simulation, then switch to real auth
10-
9+
const html_code = "<p>Preview example!</p>";
1110
return (
1211
<main className="bg-neutral-950 min-h-screen flex flex-col">
1312
<Header />

0 commit comments

Comments
 (0)