-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/credebl/studio into user-da…
…shboard-organization-list-issue
- Loading branch information
Showing
19 changed files
with
1,085 additions
and
480 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,16 @@ | ||
|
||
<!-- <footer class="w-full bg-white text-center text-white insect-x-0 p-4"> --> | ||
<footer class="z-50 w-full bg-white border-b border-gray-200 sm:py-2 dark:bg-gray-800 dark:border-gray-700 insect-x-0"> | ||
<div class="container mx-auto"> | ||
|
||
<div class="dark:bg-gray-700 md:flex md:items-center md:justify-between p-4"> | ||
<p class="text-sm text-center text-gray-500"> | ||
© 2019 - {new Date().getFullYear()} - | ||
<a class="hover:underline" target="_blank" | ||
>CREDEBL</a | ||
> | All rights reserved. | ||
</p> | ||
|
||
</div> | ||
</div> | ||
</footer> |
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,26 @@ | ||
--- | ||
import FooterSignInSignUp from './FooterSignInSignUp.astro'; | ||
import LayoutCommon from './LayoutCommon.astro'; | ||
import NavBarSignInSignUp from './NavBarSignInSignUp.astro'; | ||
--- | ||
<NavBarSignInSignUp /> | ||
|
||
<LayoutCommon> | ||
<div class="flex flex-col min-h-screen"> | ||
|
||
|
||
|
||
<!-- <div class="flex bg-gray-50 dark:bg-gray-900"> --> | ||
<!-- <div | ||
id="main-content" | ||
class="relative w-full bg-gray-50 dark:bg-gray-900" | ||
> --> | ||
|
||
<slot /> | ||
<!-- </div> --> | ||
<!-- </div> --> | ||
|
||
<FooterSignInSignUp /> | ||
</div> | ||
</LayoutCommon> | ||
|
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,27 @@ | ||
--- | ||
--- | ||
|
||
<nav | ||
class="fixed top-0 z-50 w-full bg-white border-b border-gray-200 sm:py-2 dark:bg-gray-800 dark:border-gray-700 " | ||
> | ||
<div class="container py-1 mx-auto"> | ||
<div class="flex items-center justify-between"> | ||
<div class="flex items-center justify-start"> | ||
<a class="flex mr-4" href='/'> | ||
<img | ||
src='/images/CREDEBL_ICON.png' | ||
class="h-8 mr-3" | ||
alt="CREDEBL Logo" | ||
/> | ||
<span | ||
class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white" | ||
>CREDEBL</span | ||
> | ||
</a> | ||
</div> | ||
|
||
|
||
</div> | ||
</div> | ||
|
||
</nav> |
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
Oops, something went wrong.