53 |     ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── funding.yml └── workflows │ └── production.yml ├── .gitignore ├── .vscode └── swissknifeDecorators.json ├── .yarnrc.yml ├── LICENSE.md ├── README.md ├── domain-specific-pages ├── bigjuicyf.art.html ├── cloudflare-status.com.html ├── cub.cafe.mp4 ├── digiorno.delivery.html ├── discord-status.com.html ├── fortnitebattlepass.shop.mp4 ├── furbyafterlife.com.html ├── gay.obama.solutions.mp4 ├── its-morbin-ti.me.gif ├── lavy.cloud.html ├── legacy.obama.solutions.mp4 ├── linus-sex.tips.html ├── linus-tech.tips.html ├── marcusgray.is-cute-and.gay.html ├── milkers.mom.mp4 ├── monox-will.hack-the.network.html ├── nagifur.is-cute-and.gay.html ├── obama.solutions.mp4 ├── peter.became.gay.html ├── piss.industries.html ├── shit.computer.html ├── the-fool.net.html ├── toilets.pics.html └── you.are-so.gay.html ├── index.html ├── nginx ├── errors │ ├── error500.html │ └── error503.html ├── nginx-errors.conf └── nginx.conf ├── package.json ├── public ├── Cumulonimbus.webp ├── icons │ ├── 128x128.png │ ├── 144x144.png │ ├── 152x152.png │ ├── 192x192.png │ ├── 384x384.png │ ├── 512x512.png │ ├── 72x72.png │ ├── 96x96.png │ ├── apple-touch-icon-152x152.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── maskable.png │ └── msapplication-icon-144x144.png ├── robots.txt └── sitemap.xml ├── src ├── App.vue ├── assets │ ├── fonts │ │ ├── Montserrat │ │ │ ├── Montserrat-Black.ttf │ │ │ ├── Montserrat-BlackItalic.ttf │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-BoldItalic.ttf │ │ │ ├── Montserrat-ExtraBold.ttf │ │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ │ ├── Montserrat-ExtraLight.ttf │ │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ │ ├── Montserrat-Italic.ttf │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-LightItalic.ttf │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── Montserrat-MediumItalic.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Montserrat-SemiBold.ttf │ │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ │ ├── Montserrat-Thin.ttf │ │ │ └── Montserrat-ThinItalic.ttf │ │ ├── SourceCodePro │ │ │ ├── SourceCodePro-Italic-VariableFont_wght.ttf │ │ │ ├── SourceCodePro-VariableFont_wght.ttf │ │ │ └── static │ │ │ │ ├── SourceCodePro-Black.ttf │ │ │ │ ├── SourceCodePro-BlackItalic.ttf │ │ │ │ ├── SourceCodePro-Bold.ttf │ │ │ │ ├── SourceCodePro-BoldItalic.ttf │ │ │ │ ├── SourceCodePro-ExtraBold.ttf │ │ │ │ ├── SourceCodePro-ExtraBoldItalic.ttf │ │ │ │ ├── SourceCodePro-ExtraLight.ttf │ │ │ │ ├── SourceCodePro-ExtraLightItalic.ttf │ │ │ │ ├── SourceCodePro-Italic.ttf │ │ │ │ ├── SourceCodePro-Light.ttf │ │ │ │ ├── SourceCodePro-LightItalic.ttf │ │ │ │ ├── SourceCodePro-Medium.ttf │ │ │ │ ├── SourceCodePro-MediumItalic.ttf │ │ │ │ ├── SourceCodePro-Regular.ttf │ │ │ │ ├── SourceCodePro-SemiBold.ttf │ │ │ │ └── SourceCodePro-SemiBoldItalic.ttf │ │ ├── Ubuntu │ │ │ ├── Ubuntu-Bold.ttf │ │ │ ├── Ubuntu-BoldItalic.ttf │ │ │ ├── Ubuntu-Italic.ttf │ │ │ ├── Ubuntu-Light.ttf │ │ │ ├── Ubuntu-LightItalic.ttf │ │ │ ├── Ubuntu-Medium.ttf │ │ │ ├── Ubuntu-MediumItalic.ttf │ │ │ └── Ubuntu-Regular.ttf │ │ └── fonts.css │ └── images │ │ ├── Cumulonimbus.png │ │ ├── Cumulonimbus.svg │ │ ├── Cumulonimbus.webp │ │ ├── checkmark.svg │ │ ├── close.svg │ │ ├── empty.gif │ │ ├── exclamation-mark.svg │ │ ├── file.svg │ │ ├── gear.svg │ │ ├── info.svg │ │ ├── newtab.svg │ │ ├── no-preview.svg │ │ ├── plus.svg │ │ ├── profile.svg │ │ ├── upload.svg │ │ └── wrench.svg ├── components │ ├── AnimatedEllipsis.vue │ ├── BackButton.vue │ ├── ConfirmModal.vue │ ├── ContentBox.vue │ ├── DomainModal.vue │ ├── EmphasizedBox.vue │ ├── FileContentBox.vue │ ├── Form.vue │ ├── FormModal.vue │ ├── FullscreenLoadingMessage.vue │ ├── LoadingMessage.vue │ ├── LoadingSpinner.vue │ ├── Marquee.vue │ ├── Modal.vue │ ├── Online.vue │ ├── Paginator.vue │ ├── PreviewContentBox.vue │ ├── ProgressBar.vue │ ├── RouterButton.vue │ ├── SecondFactorModal.vue │ ├── SelectableContentBox.vue │ ├── Separator.vue │ ├── SkeletonContentBoxes.vue │ ├── Switch.vue │ └── ThemeManager.vue ├── env.d.ts ├── main.ts ├── router.ts ├── stores │ ├── displayPref.ts │ ├── domainPicker.ts │ ├── ptb.ts │ ├── secondFactorChallenger.ts │ ├── staff-space │ │ ├── domains.ts │ │ ├── file.ts │ │ ├── files.ts │ │ ├── instruction.ts │ │ ├── instructions.ts │ │ ├── killswitches.ts │ │ ├── secondFactors.ts │ │ ├── sessions.ts │ │ ├── user.ts │ │ ├── users.ts │ │ └── utilities.ts │ ├── toast.ts │ ├── user-space │ │ ├── file.ts │ │ ├── files.ts │ │ ├── instruction.ts │ │ ├── instructions.ts │ │ ├── secondFactors.ts │ │ └── sessions.ts │ └── user.ts ├── sw.ts ├── utils │ ├── ConnectivityCheck.ts │ ├── defaultErrorHandler.ts │ ├── loadWhenOnline.ts │ ├── persistPiniaRef.ts │ ├── routerBackWithFallback.ts │ ├── size.ts │ ├── swRouter.ts │ ├── time.ts │ ├── toDateString.ts │ ├── toLogin.ts │ └── wait.ts └── views │ ├── 404.vue │ ├── About.vue │ ├── AccountSwitcher.vue │ ├── Auth.vue │ ├── Home.vue │ ├── Privacy.vue │ ├── TOS.vue │ ├── staff-space │ ├── Dashboard.vue │ ├── Domains.vue │ ├── File.vue │ ├── Files.vue │ ├── KillSwitches.vue │ ├── SetupGuide.vue │ ├── SetupGuides.vue │ ├── User.vue │ ├── UserSecondFactors.vue │ ├── UserSessions.vue │ ├── Users.vue │ └── Utilities.vue │ ├── test │ ├── BasicEmphasizedBox.vue │ ├── ContentBoxes.vue │ ├── FileContentBoxes.vue │ ├── FormEmphasizedBox.vue │ ├── FullscreenLoadingMessage.vue │ ├── FullscreenProgressBar.vue │ ├── LoadingMessage.vue │ ├── MarqueeText.vue │ ├── Modals.vue │ ├── Paginator.vue │ ├── ProgressBar.vue │ ├── SkeletonContentBoxes.vue │ ├── Switches.vue │ ├── Testing.vue │ └── TestingLinkSink.vue │ └── user-space │ ├── Account.vue │ ├── AccountSecondFactors.vue │ ├── AccountSessions.vue │ ├── Dashboard.vue │ ├── File.vue │ ├── Files.vue │ ├── SetupGuide.vue │ ├── SetupGuides.vue │ ├── Upload.vue │ └── Verify.vue ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.development.ts ├── vite.config.ptb.ts └── vite.config.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | patreon: alekeagle 2 | github: AlekEagle 3 | -------------------------------------------------------------------------------- /.github/workflows/production.yml: -------------------------------------------------------------------------------- 1 | name: Build and Deploy Cumulonimbus Production 2 | 3 | on: 4 | push: 5 | branches: [master] 6 | 7 | workflow_dispatch: 8 | 9 | jobs: 10 | build: 11 | runs-on: self-hosted 12 | 13 | env: 14 | YARN_ENABLE_IMMUTABLE_INSTALLS: false 15 | 16 | steps: 17 | - name: Remove Stale Build Artifacts 18 | run: | 19 | rm -rf /var/www-data/dist 20 | rm -rf /var/www-data/domain-specific-pages 21 | - name: Checkout Repository 22 | uses: actions/checkout@v4 23 | - name: Copy Static Build Artifacts 24 | run: | 25 | cp -R nginx/ /var/www-data 26 | cp -R domain-specific-pages/ /var/www-data 27 | - name: Install Dependencies 28 | run: yarn 29 | - name: Build Production 30 | run: yarn build-prod 31 | - name: Copy Build Artifacts 32 | run: cp -R dist/ /var/www-data 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Certificates 2 | certs/ 3 | 4 | # Logs 5 | logs 6 | *.log 7 | npm-debug.log* 8 | yarn-debug.log* 9 | yarn-error.log* 10 | pnpm-debug.log* 11 | lerna-debug.log* 12 | 13 | node_modules 14 | dist 15 | dev-dist 16 | dist-ssr 17 | *.local 18 | .yarn 19 | 20 | # Editor directories and files 21 | .vscode/* 22 | !.vscode/extensions.json 23 | !.vscode/swissknifeDecorators.json 24 | .idea 25 | .DS_Store 26 | *.suo 27 | *.ntvs* 28 | *.njsproj 29 | *.sln 30 | *.sw? 31 | 32 | # Lockfiles 33 | package-lock.json 34 | yarn.lock -------------------------------------------------------------------------------- /.vscode/swissknifeDecorators.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cumulonimbus Frontend 2 | 3 | The frontend of the Cumulonimbus ecosystem. 4 | 5 | ## The Cumulonimbus Ecosystem 6 | 7 | - [Cumulonimbus API](https://github.com/AlekEagle/cumulonimbus-api) 8 | - [Cumulonimbus Thumbnailer](https://github.com/AlekEagle/cumulonimbus-thumbnailer) 9 | - [Cumulonimbus Wrapper](https://github.com/AlekEagle/cumulonimbus-wrapper) 10 | - [Cumulonimbus Documentation](https://github.com/AlekEagle/cumulonimbus-docs) 11 | - Cumulonimbus Frontend (You are here.) 12 | 13 | ## What is in this repository? 14 | 15 | This repository contains the UI that an end-user will interact with when visiting the [website](https://alekeagle.me), all special landing pages for domains connected to Cumulonimbus, and the NGINX configuration for the NGINX webserver. 16 | -------------------------------------------------------------------------------- /domain-specific-pages/bigjuicyf.art.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
53 |     Hosted with ❤️ on 67 | Cumulonimbus 70 | by 71 | Alek Evans
75 | 76 | 77 | -------------------------------------------------------------------------------- /domain-specific-pages/cloudflare-status.com.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
54 |       55 | I think you meant 56 | cloudflarestatus.com 57 |
58 |Hosted with ❤️ on Cumulonimbus by Alek Evans
60 | 61 | 62 | -------------------------------------------------------------------------------- /domain-specific-pages/cub.cafe.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekEagle/cumulonimbus-frontend/adf18930248dcc37fac602fa726b1bdd56692d25/domain-specific-pages/cub.cafe.mp4 -------------------------------------------------------------------------------- /domain-specific-pages/digiorno.delivery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
59 |     55 | I think you meant 56 | discordstatus.com 57 |
58 |Hosted with ❤️ on Cumulonimbus by Alek Evans
60 | 61 | 62 | -------------------------------------------------------------------------------- /domain-specific-pages/fortnitebattlepass.shop.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekEagle/cumulonimbus-frontend/adf18930248dcc37fac602fa726b1bdd56692d25/domain-specific-pages/fortnitebattlepass.shop.mp4 -------------------------------------------------------------------------------- /domain-specific-pages/furbyafterlife.com.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /domain-specific-pages/gay.obama.solutions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekEagle/cumulonimbus-frontend/adf18930248dcc37fac602fa726b1bdd56692d25/domain-specific-pages/gay.obama.solutions.mp4 -------------------------------------------------------------------------------- /domain-specific-pages/its-morbin-ti.me.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekEagle/cumulonimbus-frontend/adf18930248dcc37fac602fa726b1bdd56692d25/domain-specific-pages/its-morbin-ti.me.gif -------------------------------------------------------------------------------- /domain-specific-pages/lavy.cloud.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 14 | 15 | 16 |31 | Hosted with ❤️ on 32 | Cumulonimbus 39 | by 40 | Alek Evans 47 |
48 | 49 | 50 | 69 | -------------------------------------------------------------------------------- /domain-specific-pages/legacy.obama.solutions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekEagle/cumulonimbus-frontend/adf18930248dcc37fac602fa726b1bdd56692d25/domain-specific-pages/legacy.obama.solutions.mp4 -------------------------------------------------------------------------------- /domain-specific-pages/linus-sex.tips.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
53 |     Hosted with ❤️ on Cumulonimbus by Alek Evans
55 | 56 | 57 | -------------------------------------------------------------------------------- /domain-specific-pages/linus-tech.tips.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
57 |       58 | I am monox!!! Do not talk to me or I will hak you!!!! (NOT CLICKBAIT) 59 |
60 |Hosted with ❤️ on Cumulonimbus by Alek Evans
62 | 63 | 64 | -------------------------------------------------------------------------------- /domain-specific-pages/nagifur.is-cute-and.gay.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Hosted with ❤️ on Cumulonimbus by Alek Evans
13 | 14 | 15 | -------------------------------------------------------------------------------- /domain-specific-pages/piss.industries.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |telegram: @kadixfox
15 | 			discord: @78d26e80
16 | 		Hosted with ❤️ on Cumulonimbus by Alek Evans
18 | 19 | 20 | -------------------------------------------------------------------------------- /domain-specific-pages/shit.computer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Hosted with ❤️ on Cumulonimbus by Alek Evans
122 | 123 | 124 | -------------------------------------------------------------------------------- /domain-specific-pages/toilets.pics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |Hosted with ❤️ on 108 | Cumulonimbus 115 | by 116 | Alek Evans
124 | 125 | 126 | -------------------------------------------------------------------------------- /domain-specific-pages/you.are-so.gay.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
51 |       You're gay.
52 |Hosted with ❤️ on Cumulonimbus by Alek Evans
54 | 55 | 56 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |25 | Nginx didn't quite know how to handle this request, so it gave up and gave 26 | you this page. The API and any uploaded content should still be 27 | accessible. If this doesn't resolve itself after a few minutes or the API 28 | and/or your uploaded content is unavailable, let us know in the 29 | Discord Server. Here's a picture of a cat. 32 |
33 |25 | This usually only happens when you catch Cumulonimbus just as we're 26 | updating the dashboard. The API and any uploaded content should still be 27 | accessible. If this doesn't resolve itself after a few minutes or the API 28 | and/or your uploaded content is unavailable, let us know in the 29 | Discord Server. Here's a picture of a cat. 32 |
33 |Please enter the code from your authenticator app.
15 | 23 | 24 | 25 |When you're ready, click "It's Me!" and touch your security key.
26 | 27 | 28 |Please enter one of your backup codes.
29 | 36 | 37 | 38 |I am broken.
39 | 40 | 41 |
 9 |         
12 |           
14 |           
16 |         
27 |       
30 |         
32 |         
34 |       
 8 |         Yes, this is totally the only file hosting platform, don't even bother
 9 |         with looking up other file hosting platforms, because they don't exist.
10 |         You can trust me, I'm the marketing material that's supposed to convince
11 |         you to use this platform.
12 |         
13 |         
14 |         * This is not the only file hosting platform, pardon the sarcasm.
15 |       
20 | With a large selection of domains already, we are always accepting more 21 | domains if you're open to supplying them! 22 |
23 |27 | With official support for ShareX and other programs, we are always looking to 28 | expand what is officially supported, just let us know what you want to 29 | see added and we'll see what we can do! 30 |
31 |35 | Have a question or concern about Cumulonimbus, have a suggestion, or 36 | just want to chat with the developer? Join the 37 | Discord 40 | server and talk with the rest of the community! 41 |
42 |
46 |         Head to the 
53 | Find someone misusing and/or exploiting the Cumulonimbus platform? Send 54 | us an 55 | abuse report 61 | and we'll look into it right away. 62 |
63 |
 5 |     
 6 |       This document describes the usage of Cumulonimbus (which from here on out
 7 |       may be referred to as We, Us, and/or
 8 |       the Service) allowed. By using the Service You are agreeing
 9 |       to these terms. THIS SERVICE IS PROVIDED AS-IS WITH ABSOLUTELY NO WARRANTY
10 |       IN ANY WAY, SHAPE, OR FORM. WE ARE NOT RESPONSIBLE FOR ANY LOSS OF DATA.
11 |       FAILURE TO ABIDE BY THESE TERMS MAY RESULT IN YOUR ACCOUNT BEING DISABLED
12 |       ("BANNED") OR TERMINATED. ANY ACTION TAKEN AGAINST YOUR ACCOUNT WILL BE
13 |       ACCOMPANIED WITH A REASON, WHETHER IT BE BY EMAIL OR ON THE SERVICE
14 |       ITSELF.
15 |     
16 |   
18 | If You do not agree to these terms, usage of the Service must be 19 | discontinued immediately. 20 |
21 |23 | We reserve the right to change these terms at any time. If changes are made 24 | to these terms, You will be notified via email and/or on the Service itself. 25 | The date at the top of this document will be updated to reflect the date of 26 | the last change. While We will notify You of changes, We strongly recommend 27 | that You check this document regularly to ensure that You are aware of the 28 | current terms. If You do not agree to the changes, You must discontinue 29 | usage of the Service immediately. 30 |
31 |33 | The source code of the Service is available on GitHub. You are free to 34 | download, modify, and redistribute the source code as You please under the 35 | terms of the GNU General Public License v3.0. However, You may not use the 36 | Cumulonimbus name, logo, or any other branding assets in your clone or fork 37 | of the Service with the intent to mislead users into thinking that Your 38 | clone or fork is the official Service. Doing so will result in defensive and 39 | legal action. 40 |
41 |43 | Any and all content uploaded by You is, and will always be, Your property. 44 | We will never claim ownership of any content uploaded by You. The Service is 45 | not liable or responsible for any user-generated content. The upload of 46 | illegal, harmful, and/or immoral content as defined within Your 47 | jurisdiction, the state laws of Alaska and Missouri, and U.S. Federal Law is 48 | strictly prohibited. 49 |
50 |52 | Violating these terms may result in uploaded content being removed, Your 53 | account being disabled ("banned"), and/or Your account being terminated. Any 54 | action taken against Your account will be accompanied with a reason, whether 55 | it be by email or on the Service itself. Disabled accounts will be deleted 56 | one month after being disabled. Terminated accounts will be deleted 57 | immediately. If Your account is disabled, You may appeal the decision by 58 | emailing Us at 59 | appeals@alekeagle.me. If Your 60 | account is terminated, You may not appeal the decision. 61 |
62 |64 | If You believe that Your work has been copied in a way that constitutes a 65 | DMCA violation, please contact Us at 66 | dmca@alekeagle.me with the URL of the 67 | content in question and proof that You are the owner of the content. Abuse 68 | of DMCA claims are not tolerated and will be ignored. 69 |
70 |72 | If You have any questions or concerns regarding these terms, please contact 73 | Us at contact@alekeagle.me. 74 |
75 | 76 | 77 | 84 | -------------------------------------------------------------------------------- /src/views/staff-space/Dashboard.vue: -------------------------------------------------------------------------------- 1 | 2 |Current Log Level: 
Whoops! Something went wrong.
59 | 60 | 61 |Name:  Joe Mana 
Age:  25 
 29 |         Email:
 30 |         
 31 |           somereallylong@randomstuffthisprobablydoesntexist.hopefully.biz
 32 |         
 33 |       
 35 |         More long content:
 36 |         
 37 |           Lorem ipsum dolor, sit amet consectetur adipisicing elit. Ullam
 38 |           aliquam error ducimus dicta officiis velit nulla ipsa minima
 39 |           repellendus expedita, atque unde iure aut veniam dolore necessitatibus
 40 |           corrupti, blanditiis repellat!
 41 |         
 42 |       
Are you sure you want to delete these {{ selected.length }} files?
55 |They will be lost forever! (A long time!)
56 |