-
Notifications
You must be signed in to change notification settings - Fork 0
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
6 changed files
with
60 additions
and
3 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
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,12 @@ | ||
from fastapi import APIRouter | ||
from starlette.responses import FileResponse | ||
|
||
router = APIRouter() | ||
|
||
|
||
@router.get("/") | ||
async def root(): | ||
""" | ||
Landing Page | ||
""" | ||
return FileResponse("app/static/index.html") |
File renamed without changes
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,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>디닝 - Deening</title> | ||
<link rel="icon" type="image/png" href="static/icon.png"> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<style> | ||
@import url('https://fastly.jsdelivr.net/gh/wanteddev/[email protected]/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css'); | ||
|
||
body { | ||
font-family: 'Wanted Sans Variable', sans-serif; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="h-[100dvh] flex flex-col justify-center items-center gap-12"> | ||
<img draggable="false" src="static/logo.svg" alt="logo" class="h-24"> | ||
<div class="flex flex-row gap-4 text-lg"> | ||
<a target="_blank" rel="noreferrer noopener" href="https://github.com/sspzoa/deening-back" class="cursor-pointer ease-in-out duration-300 hover:opacity-50">GitHub</a> | ||
<span>|</span> | ||
<a target="_blank" rel="noreferrer noopener" href="/docs" class="cursor-pointer ease-in-out duration-300 hover:opacity-50">Swagger</a> | ||
<span>|</span> | ||
<a target="_blank" rel="noreferrer noopener" href="/redoc" class="cursor-pointer ease-in-out duration-300 hover:opacity-50">Redoc</a> | ||
</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.