Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions Projects/Starlight/apparent-asteroid/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default defineConfig({
integrations: [
starlight({
title: "Thoth Tech",
customCss: ["./src/styles/custom.css"],
social: {
github: "https://github.com/thoth-tech",
},
Expand All @@ -22,7 +23,7 @@ export default defineConfig({
},
{
label: "Documentation",
autogenerate: { directory: "processes/Documentation" },
autogenerate: { directory: "processes/documentation" },
},
{
label: "Quality Assurance",
Expand Down Expand Up @@ -61,12 +62,6 @@ export default defineConfig({
directory: "reference",
},
},
{
label: "Policies",
autogenerate: {
directory: "policies",
},
},
{
label: "Products",
items: [
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,17 @@ description: Thoth Tech's latest and greatest

import { Card, LinkCard, CardGrid } from "@astrojs/starlight/components";

<LinkCard
title="Ontrack"
description="an innovative Learning Management
System that is designed for a skill-based
course delivery model."
href="/products/ontrack/example/"
/>
<LinkCard
title="SplashKit"
description="a C++ Software Development Kit. It is
beginner-friendly to assist in introductory
programming education, and can be used
to create 2D games."
href="/products/splashkit/example/"
/>
<LinkCard
title="Art Gallery"
description="a digital art gallery platform for the
displaying and enjoying of art"
href="/products/art-gallery/example/"
/>
<div class="artGallery">
<LinkCard
title="Art Gallery"
description="a digital art gallery platform for the
displaying and enjoying of art. One of our up and coming products. "
href="/products/art-gallery/example/"
/>
<img src="/src/assets/logos/artgallery.png" class="pi" />
</div>

<div class = 'courseFlow'>
<LinkCard
title="CourseFlow"
description="This project aims to assists students and
Expand All @@ -34,10 +24,40 @@ import { Card, LinkCard, CardGrid } from "@astrojs/starlight/components";
certain courses"
href="/products/courseflow/example/"
/>
<LinkCard
title="Operations"
description="a deticated team for monitoring the other
<img src="/src/assets/logos/courseflow.png" class = "pi"/>

</div>

<div class="operations">
<LinkCard
title="Operations"
description="a deticated team for monitoring the other
products and making their jobs as easier
through research documentation."
href="/products/company-operations/example/"
/>
href="/products/company-operations/example/"
/>
<img src="/src/assets/logos/operations.png" class="pi" />
</div>

<div class="ontrack">
<LinkCard
title="Ontrack"
description="an innovative Learning Management
System that is designed for a skill-based
course delivery model."
href="/products/ontrack/example/"
/>
<img src="/src/assets/logos/ontrack.png" class="pi" />
</div>

<div class="splashkit">
<LinkCard
title="SplashKit"
description="a C++ Software Development Kit. It is
beginner-friendly to assist in introductory
programming education, and can be used
to create 2D games."
href="/products/splashkit/example/"
/>
<img src="/src/assets/logos/splashkit.png" class="pi" />
</div>
125 changes: 125 additions & 0 deletions Projects/Starlight/apparent-asteroid/src/styles/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
/*global theme*/
/* Dark mode colors. */
:root {
--sl-color-accent-low: #242424;
--sl-color-accent: #6a6a6a;
--sl-color-accent-high: #c8c8c8;
--sl-color-white: #ffffff;
--sl-color-gray-1: #eeeeee;
--sl-color-gray-2: #c2c2c2;
--sl-color-gray-3: #8b8b8b;
--sl-color-gray-4: #585858;
--sl-color-gray-5: #383838;
--sl-color-gray-6: #272727;
--sl-color-black: #181818;
}
/* Light mode colors. */
:root[data-theme="light"] {
--sl-color-accent-low: #d7d7d7;
--sl-color-accent: #6b6b6b;
--sl-color-accent-high: #323232;
--sl-color-white: #181818;
--sl-color-gray-1: #272727;
--sl-color-gray-2: #383838;
--sl-color-gray-3: #585858;
--sl-color-gray-4: #8b8b8b;
--sl-color-gray-5: #c2c2c2;
--sl-color-gray-6: #eeeeee;
--sl-color-gray-7: #f6f6f6;
--sl-color-black: #ffffff;
}

/*landing page*/
.aboutContainer {
width: 100%;
float: left;
}

.aboutAbout {
width: 20%;
}
.aboutButtons {
width: 60%;
}

/*products page*/
.ontrack {
--sl-color-gray-1: #3691ff; /*??*/
--sl-color-gray-2: #3691ff; /*hover outline*/
--sl-color-gray-3: #3691ff; /*Text Colour*/
--sl-color-gray-4: #3691ff; /*??*/
--sl-color-gray-5: #00459a; /*non-hover outline*/
--sl-color-gray-6: #131313; /*hover background*/
--sl-color-black: #3691ff; /*Text colour light mode*/
--sl-color-white: #3691ff; /*Text colour dark mode*/
display: flex;
justify-content: center;
align-items: center;
}

img.ontrack {
float: right;
}

.splashkit {
--sl-color-gray-1: #f5a623; /*??*/
--sl-color-gray-2: #f5a623; /*hover outline*/
--sl-color-gray-3: #f5a623; /*Text Colour*/
--sl-color-gray-4: #f5a623; /*??*/
--sl-color-gray-5: #855506; /*non-hover outline*/
--sl-color-gray-6: #131313; /*hover background*/
--sl-color-black: #f5a623; /*Text colour light mode*/
--sl-color-white: #f5a623; /*Text colour dark mode*/
display: flex;
justify-content: center;
align-items: center;
}

.artGallery {
--sl-color-gray-1: #545454; /*??*/
--sl-color-gray-2: #545454; /*hover outline*/
--sl-color-gray-3: #545454; /*Text Colour*/
--sl-color-gray-4: #545454; /*??*/
--sl-color-gray-5: #2a2a2a; /*non-hover outline*/
--sl-color-gray-6: #131313; /*hover background*/
--sl-color-black: #545454; /*Text colour light mode*/
--sl-color-white: #545454; /*Text colour dark mode*/
display: flex;
justify-content: center;
}

.courseFlow {
--sl-color-gray-1: #7089fd; /*??*/
--sl-color-gray-2: #7089fd; /*hover outline*/
--sl-color-gray-3: #7089fd; /*Text Colour*/
--sl-color-gray-4: #7089fd; /*??*/
--sl-color-gray-5: #0221b3; /*non-hover outline*/
--sl-color-gray-6: #131313; /*hover background*/
--sl-color-black: #7089fd; /*Text colour light mode*/
--sl-color-white: #7089fd; /*Text colour dark mode*/
display: flex;
justify-content: center;
align-items: center;
}

.operations {
--sl-color-gray-1: #fc486b; /*??*/
--sl-color-gray-2: #fc486b; /*hover outline*/
--sl-color-gray-3: #fc486b; /*Text Colour*/
--sl-color-gray-4: #fc486b; /*??*/
--sl-color-gray-5: #9f0221; /*non-hover outline*/
--sl-color-gray-6: #131313; /*hover background*/
--sl-color-black: #fc486b; /*Text colour light mode*/
--sl-color-white: #fc486b; /*Text colour dark mode*/
display: flex;
justify-content: center;
align-items: center;
}

/*product images*/
.pi {
width: 50px;
height: 50px;
object-fit: scale-down;
margin: 30px;
}