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
4 changes: 2 additions & 2 deletions src/images/TheSecretStore/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * as TSSLogo from './TSSLogo';
export * as TheSecretStore from './ProjectsPage';
export * as TheSecretStore from './ProjectsPage';
export * as TSSLogo from './TSSLogo';
18 changes: 13 additions & 5 deletions src/sections/Projects/data.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { SFPImageLarge, SFPImageSmall, SFPLogo } from '../../images/7days50projects';
import { AubitLogo, AubitMobile } from '../../images/Aubit';
import { CollegemateDark, CollegemateLogo } from '../../images/Collegemate';
import { TSSLogo, TheSecretStore } from '../../images/TheSecretStore';
import { InfiniteLoopClub, InfiniteLoopClubLogo } from '../../images/InfiniteLoopClub';
import { SFPImageLarge, SFPImageSmall, SFPLogo } from '../../images/7days50projects';
import { TheSecretStore, TSSLogo } from '../../images/TheSecretStore';

const collegemate = {
title: 'Collegemate',
Expand Down Expand Up @@ -33,12 +33,20 @@ const tss = {
logo: TSSLogo,
images: { small: TheSecretStore, large: TheSecretStore },
dark: { small: TheSecretStore, large: TheSecretStore },
description: 'The Secret Store is a platform to share and synchronize your project configuration environment variables with your team without having to send a bunch of e-mails back and forth with simple commands like in git. It\'s Forever FOSS (Free and Open Source Software). You can fork and create your copy, and utilize it for your personal / internal use within your organization.',
features: ['Command Line Interface', 'AES 256 Encryption', 'Google OAuth', 'Token Based Authentication', 'Granular Permissions', 'Simple commands inspired by Git'],
description:
"The Secret Store is a platform to share and synchronize your project configuration environment variables with your team without having to send a bunch of e-mails back and forth with simple commands like in git. It's Forever FOSS (Free and Open Source Software). You can fork and create your copy, and utilize it for your personal / internal use within your organization.",
features: [
'Command Line Interface',
'AES 256 Encryption',
'Google OAuth',
'Token Based Authentication',
'Granular Permissions',
'Simple commands inspired by Git'
],
techStack: ['Nx Monorepo', 'Nest JS', 'React JS'],
link: undefined,
repo: 'https://github.com/the-secret-store/monorepo'
}
};

const ilc = {
title: 'Infinite Loop Club website',
Expand Down