This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import Navbar from "@/components/Navbar"; | ||
import Header from "@/components/Header"; | ||
/* | ||
import { | ||
Card, | ||
CardContent, | ||
CardDescription, | ||
CardFooter, | ||
CardHeader, | ||
CardTitle, | ||
} from "@/components/ui/card"; | ||
*/ | ||
export default function Apps() { | ||
return ( | ||
<> | ||
<Header title="Apps | Ephemeral" /> | ||
<div> | ||
<Navbar /> | ||
<div className="absolute left-1/2 top-2 -translate-x-1/2 translate-y-5 text-3xl font-bold text-slate-300"> | ||
Apps | ||
</div> | ||
<div className="w-full h-[calc(100%_-_5rem)] translate-y-20"> | ||
<iframe | ||
width="100%" | ||
height="100%" | ||
src="https://example.com" | ||
></iframe> | ||
{/* | ||
{apps.map((app) => ( | ||
<div> | ||
<Card> | ||
<CardHeader> | ||
<CardTitle></CardTitle> | ||
<CardDescription></CardDescription> | ||
</CardHeader> | ||
</Card> | ||
</div> | ||
))} | ||
*/} | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"name": "placeholder", | ||
"desc": "placeholder", | ||
"path": "placeholder" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// import list from "apps.json"; | ||
|
||
// export const apps = list as []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
</head> | ||
<body> | ||
<p> | ||
placeholder | ||
</p> | ||
</body> | ||
</html> |