Skip to content

Commit

Permalink
Merge pull request #1 from JMARRUJO91/JMARRUJO91-patch-1
Browse files Browse the repository at this point in the history
Add files via upload
  • Loading branch information
JMARRUJO91 authored Apr 4, 2024
2 parents 2dac390 + 9a9abf8 commit 0745d26
Show file tree
Hide file tree
Showing 100 changed files with 8,981 additions and 0 deletions.
Binary file not shown.
Binary file added E-Series__EF-Series_SANtricity_OS 11.50.2.pdf
Binary file not shown.
Binary file added SANtricity_Web_Services 3.2.pdf
Binary file not shown.
Binary file added activemq-broker-5.15.9-source.jar
Binary file not shown.
Binary file added activemq-client-5.15.9-source.jar
Binary file not shown.
Binary file added activemq-openwire-legacy-5.15.9-source.jar
Binary file not shown.
Binary file added adduser_3.113+nmu3_all.deb
Binary file not shown.
Binary file added animal-sniffer-annotations-1.14-source.jar
Binary file not shown.
Binary file added annotations-13.0-source.jar
Binary file not shown.
Binary file added aopalliance-repackaged-2.5.0-b32-source.jar
Binary file not shown.
Binary file added apt-utils_1.0.9.8.5_amd64.deb
Binary file not shown.
Binary file added apt_1.0.9.8.5_amd64.deb
Binary file not shown.
Binary file added aptitude-common_0.6.11-1_all.deb
Binary file not shown.
Binary file added aptitude_0.6.11-1+b1_amd64.deb
Binary file not shown.
Binary file added asm-7.0-source.jar
Binary file not shown.
Binary file added asm-analysis-7.0-source.jar
Binary file not shown.
Binary file added asm-commons-7.0-source.jar
Binary file not shown.
Binary file added asm-tree-7.0-source.jar
Binary file not shown.
Binary file added base-files_8+deb8u11_amd64.deb
Binary file not shown.
Binary file added bash-completion_2.1-4_all.deb
Binary file not shown.
Binary file added bash_4.3-11+deb8u2_amd64.deb
Binary file not shown.
Binary file added bc-fips-1.0.2-728a372-source.jar
Binary file not shown.
Binary file added bcprov-jdk15on-1.54-source.jar
Binary file not shown.
Binary file added bsdmainutils_9.0.6_amd64.deb
Binary file not shown.
Binary file added bsdutils_2.25.2-6_amd64.deb
Binary file not shown.
Binary file added busybox_1.22.0-9+deb8u4_amd64.deb
Binary file not shown.
21 changes: 21 additions & 0 deletions website/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Responsively

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 8 additions & 0 deletions website/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
}
}
5 changes: 5 additions & 0 deletions website/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
19 changes: 19 additions & 0 deletions website/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
scrollRestoration: true,
},
transpilePackages: ['react-tweet'],
redirects: async () => {
return [
{
source: '/join-discord',
destination: 'https://discord.com/invite/tFG4E7bgkr',
permanent: false,
},
];
},
};

module.exports = nextConfig
Loading

0 comments on commit 0745d26

Please sign in to comment.