Skip to content

Commit

Permalink
feat(theme_editor): Add page for theme editor
Browse files Browse the repository at this point in the history
  • Loading branch information
aXenDeveloper committed May 9, 2024
1 parent 40985c7 commit 6b0b92e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions frontend/app/[locale]/(admin)/admin/testing/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { CONFIG } from "@/config/config";

export default function Page() {
return (
<div className="flex h-screen bg-card">
<div className="flex-1 flex items-center justify-center">
<iframe
title="YouTube video player"
className="w-3/4 h-3/4 border bg-background rounded-md"
src={CONFIG.frontend_url}
/>
</div>

<div className="w-96 flex-shrink-0 shadow-lg border-l p-5">
Theme Editor
</div>
</div>
);
}

0 comments on commit 6b0b92e

Please sign in to comment.