├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ └── bug.yml ├── pull_request_template.md └── workflows │ └── greetings.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── index.html ├── package.json ├── public ├── browserconfig.xml ├── screenshot_laptop.png ├── screenshot_phone.png ├── site.webmanifest └── terminal.jpg ├── src ├── App.tsx ├── components │ ├── Output.tsx │ ├── TermInfo.tsx │ ├── Terminal.tsx │ ├── Usage.tsx │ ├── commands │ │ ├── About.tsx │ │ ├── Clear.tsx │ │ ├── Education.tsx │ │ ├── Email.tsx │ │ ├── GeneralOutput.tsx │ │ ├── Help.tsx │ │ ├── History.tsx │ │ ├── Projects.tsx │ │ ├── Socials.tsx │ │ └── Welcome.tsx │ └── styles │ │ ├── About.styled.tsx │ │ ├── Education.styled.tsx │ │ ├── GlobalStyle.tsx │ │ ├── Help.styled.tsx │ │ ├── Output.styled.tsx │ │ ├── Projects.styled.tsx │ │ ├── Terminal.styled.tsx │ │ ├── TerminalInfo.styled.tsx │ │ ├── Themes.styled.tsx │ │ ├── Welcome.styled.tsx │ │ ├── Work.styled.tsx │ │ └── themes.ts ├── hooks │ └── useTheme.ts ├── main.tsx ├── utils │ ├── funcs.ts │ ├── storage.ts │ └── test-utils.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/package.json -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/screenshot_laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/public/screenshot_laptop.png -------------------------------------------------------------------------------- /public/screenshot_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/public/screenshot_phone.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/terminal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/public/terminal.jpg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Output.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/Output.tsx -------------------------------------------------------------------------------- /src/components/TermInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/TermInfo.tsx -------------------------------------------------------------------------------- /src/components/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/Terminal.tsx -------------------------------------------------------------------------------- /src/components/Usage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/Usage.tsx -------------------------------------------------------------------------------- /src/components/commands/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/About.tsx -------------------------------------------------------------------------------- /src/components/commands/Clear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/Clear.tsx -------------------------------------------------------------------------------- /src/components/commands/Education.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/Education.tsx -------------------------------------------------------------------------------- /src/components/commands/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/Email.tsx -------------------------------------------------------------------------------- /src/components/commands/GeneralOutput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/GeneralOutput.tsx -------------------------------------------------------------------------------- /src/components/commands/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/Help.tsx -------------------------------------------------------------------------------- /src/components/commands/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/History.tsx -------------------------------------------------------------------------------- /src/components/commands/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/Projects.tsx -------------------------------------------------------------------------------- /src/components/commands/Socials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/Socials.tsx -------------------------------------------------------------------------------- /src/components/commands/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/commands/Welcome.tsx -------------------------------------------------------------------------------- /src/components/styles/About.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/About.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/Education.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Education.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/GlobalStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/GlobalStyle.tsx -------------------------------------------------------------------------------- /src/components/styles/Help.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Help.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/Output.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Output.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/Projects.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Projects.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/Terminal.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Terminal.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/TerminalInfo.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/TerminalInfo.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/Themes.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Themes.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/Welcome.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Welcome.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/Work.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/Work.styled.tsx -------------------------------------------------------------------------------- /src/components/styles/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/components/styles/themes.ts -------------------------------------------------------------------------------- /src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/utils/funcs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/utils/funcs.ts -------------------------------------------------------------------------------- /src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/utils/storage.ts -------------------------------------------------------------------------------- /src/utils/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/utils/test-utils.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Terminal/HEAD/vite.config.ts --------------------------------------------------------------------------------