-
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
1 changed file
with
34 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/css/halfmoon.min.css" rel="stylesheet" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" /> | ||
</head> | ||
<body> | ||
<nav class="navbar navbar-expand-lg mb-3" style="background-color: var(--bs-content-bg); border-bottom: var(--bs-border-width) solid var(--bs-content-border-color);"> | ||
|
@@ -30,16 +31,45 @@ | |
</div> | ||
</div> | ||
</nav> | ||
<div class="p-4 border rounded container"> | ||
<div class="alert alert-primary" role="alert"> | ||
<h5 class="alert-heading">Hey there!</h5> | ||
This site is in beta production! Expect more features to come in the near future! | ||
<div class="alert alert-primary container border-0 rounded-0 d-flex align-items-center" role="alert"> | ||
<i class="fa-light fa-info-circle text-primary-emphasis me-2"></i> | ||
<div>This site is in beta production! Expect more features to come in the near future! | ||
</div> | ||
</div> | ||
<div class="p-4 border rounded container"> | ||
<div class="p-1"> | ||
<div class="text-center"> | ||
<h1>TTNRT Corperation</h1> | ||
<p><i>Home of the future</i></p> | ||
</div> | ||
<div class="row row-cols-1 row-cols-md-3"> | ||
<div class="col mb-3"> | ||
<div class="card mb-4 rounded-3 h-100" style="box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), .175) !important;"> | ||
<div class="card-body d-flex flex-column"> | ||
<h1 class="card-title">TTGit</h1> | ||
<p class="card-text">Git source control</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col mb-3"> | ||
<div class="card mb-4 rounded-3 h-100" style="box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), .175) !important;"> | ||
<div class="card-body d-flex flex-column"> | ||
<h1 class="card-title">AssistAI</h1> | ||
<p class="card-text">AI assistent</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col mb-3"> | ||
<div class="card mb-4 rounded-3 h-100" style="box-shadow: 0 1rem 3rem rgba(var(--bs-body-color-rgb), .175) !important;"> | ||
<div class="card-body d-flex flex-column"> | ||
<h1 class="card-title">myTT</h1> | ||
<p class="card-text">Account management</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> | ||
|