Welcome to the nexus of hyperbliss.tech, a cybernetic sanctuary crafted by Stefanie Jane— resident software sorceress and pixel enchantress. 🔮👩💻⚡
In the vast expanse of the internet, hyperbliss.tech stands as a beacon—a fusion of technology and creativity. This digital portfolio serves as a testament to the art of web development, a gallery of innovative projects, and a hub for nerds, ADHD catgirls, and magical creatures.
Here, you'll find:
- 🕸️ Intricately crafted code, weaving responsive designs that adapt to any device
- 📜 Insightful blog posts, exploring the ever-evolving digital landscape
- 🔧 Innovative projects that push the boundaries of web technology
- 🌟 Interfaces that come alive with smooth, ethereal animations
- 🔍 Optimized pathways ensuring discoverability across the web
- 📊 Analytics to understand and enhance user experiences
Stefanie Jane, the architect of this digital sanctum, is a multi-faceted technology witch. Her expertise spans the entire software stack, from crafting captivating user interfaces with front-end sorcery, to conjuring scalable infrastructure, and the arcane arts of embedded systems and operating systems. With an alchemical blend of technical prowess and artistic vision, she creates holistic software experiences that are as beautiful as they are powerful.
- 🌙 Sleek, modern design with a touch of mystique
- 📱 Responsive layout that morphs seamlessly across all devices
- 🔮 Interactive elements that respond to user interaction
- 📜 A blog that serves as a conduit for insights and knowledge
- 🖼️ A showcase of various projects demonstrating expertise
- 🔭 SEO optimization to enhance visibility and reach
- 🕯️ Google Analytics integration for data-driven improvements
- 🌠 CyberScape: An immersive, interactive background animation
- Framework: Next.js 16.0 with TypeScript 5.9
- Frontend: React 19.2
- Styling: Styled Components 6.1
- Routing: Next.js App Router
- Content Management: Markdown files with gray-matter and react-markdown 10.1
- Animations: Framer Motion 12.5
- Icons: React Icons 5.5
- SEO: Next SEO
- Analytics: Google Analytics (via nextjs-google-analytics)
- Interactive Background: CyberScape (custom animation)
- Testing: Jest 29.7 with Testing Library React 16.2
- Linting & Formatting: ESLint 9.22 and Prettier 3.5
.
├── app/
│ ├── (transition)/
│ │ ├── about/
│ │ ├── blog/
│ │ ├── projects/
│ │ └── resume/
│ ├── api/
│ │ └── rss/
│ ├── components/
│ ├── cyberscape/
│ │ ├── utils/
│ │ ├── handlers/
│ │ ├── shapes/
│ │ ├── effects/
│ │ └── particles/
│ ├── hooks/
│ ├── lib/
│ ├── styles/
│ └── layout.tsx
├── public/
│ └── images/
├── src/
│ ├── posts/
│ ├── projects/
│ └── resume.md
├── tests/
│ ├── mocks/
│ └── seo/
├── scripts/
└── various config files (.eslint.config.mjs, next.config.mjs, etc.)
Key directories:
app/: Next.js 13+ app directory containing the main application codeapp/cyberscape/: The interactive background animation systemapp/components/: Reusable React componentsapp/lib/: Utility functions and configurationssrc/: Content files (blog posts, projects, resume)tests/: Test files and mockspublic/: Static assetsscripts/: Utility scripts
- Node.js (v18 or later recommended)
- npm or yarn
-
Clone the repository:
git clone https://github.com/hyperb1iss/hyperbliss.tech.git cd hyperbliss.tech -
Install dependencies:
npm install # or yarn install -
Run the development server:
npm run dev # or yarn dev -
Open http://localhost:3000 in your browser to see the result.
The project uses Jest and React Testing Library for testing. Tests are located
in the tests/ directory.
Available test commands:
npm testoryarn test: Run all testsnpm run test:watchoryarn test:watch: Run tests in watch modenpm run test:seooryarn test:seo: Run SEO-specific testsnpm run test:seo:watchoryarn test:seo:watch: Run SEO tests in watch mode
ESLint is configured for code quality and consistency. The project uses the Next.js ESLint configuration as a base with TypeScript support.
Available lint commands:
npm run lintoryarn lint: Lint the app and tests directoriesnpm run lint:fixoryarn lint:fix: Automatically fix linting issuesnpm run formatoryarn format: Format code with Prettiernpm run format:checkoryarn format:check: Check formatting with Prettier
The project uses the following testing libraries and configurations:
- Jest with SWC for fast TypeScript transformation
- React Testing Library for component testing
- Jest environment jsdom for DOM simulation
- Custom test setup with path aliases for simplified imports
Test files should be placed in the tests/ directory with the .test.ts or
.test.tsx extension.
CyberScape is a custom-built, interactive background animation that brings the cyberpunk aesthetic of hyperbliss.tech to life. It creates a dynamic, responsive environment that reacts to user interactions and adds depth to the overall user experience.
- Interactive Particles: A field of glowing particles that respond to cursor movements.
- Vector Shapes: 3D wireframe shapes (cubes, pyramids, stars) floating in space.
- Dynamic Connections: Lines connecting nearby particles to create a network effect.
- Glitch Effects: Occasional glitch animations for an authentic cyberpunk feel.
- Responsive Design: Adapts to different screen sizes and device capabilities.
-
Initialization: The
initializeCyberScapefunction sets up the canvas and initializes particles and shapes. -
Animation Loop: A continuous loop updates and renders all elements:
- Particles and shapes move and rotate.
- Connections between particles are calculated and drawn.
- Glitch effects are randomly applied.
-
User Interaction: The animation responds to mouse movements when the cursor is over the header area.
-
Performance Optimization: Various techniques are used to ensure smooth performance:
- Throttled event listeners.
- Efficient rendering techniques.
- Adjusting the number of elements based on screen size.
-
Visual Effects:
- Dynamic color transitions.
- Glow effects on particles and shapes.
- Chromatic aberration and CRT effects during glitch animations.
CyberScape.ts: Main controller for the animation.Particle.ts: Defines the behavior of individual particles.VectorShape.ts: Manages the 3D vector shapes.CyberScapeUtils.ts: Utility functions for colors, projections, and more.glitchEffects.ts: Implements various glitch and distortion effects.
CyberScape exemplifies the fusion of art and technology, creating an engaging and visually stunning backdrop for the hyperbliss.tech experience.
The project uses Styled Components for styling, with global styles and variables
defined in src/app/styles/globals.css. The color scheme focuses on purple hues
with complementary colors:
- Primary:
#a259ff - Secondary:
#ff75d8 - Accent:
#00fff0 - Background:
#0a0a14 - Text:
#e0e0e0
Blog posts and project descriptions are managed through Markdown files located
in the src/posts/ and src/projects/ directories respectively. Each Markdown
file includes frontmatter for metadata.
SEO is managed through Next SEO, with configurations in
src/app/lib/next-seo.config.ts. Google Analytics is integrated using
nextjs-google-analytics.
Main navigation component with animated logo and responsive design.
Displays social media links and copyright information.
Handles page transitions and layout consistency.
Render blog content with a grid layout and individual post display.
Display project information in a grid and detailed view respectively.
Manages main content area and page transitions.
Renders the About page with profile information.
Displays resume information from Markdown content.
The site is configured for deployment on Netlify with a standalone output mode:
- Connect your GitHub repository to Netlify.
- Set the build command to
npm run buildoryarn build. - Set the publish directory to
out. - Configure environment variables as needed.
Netlify will automatically deploy the site on push to the main branch.
Contributions, issues, and feature requests are welcome! Check out the issues page to join the quest.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
You are free to:
- Share — Copy and redistribute the material in any medium or format
- Adapt — Remix, transform, and build upon the material
Under the following terms:
- Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made.
- NonCommercial — You may not use the material for commercial purposes.
- ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
For the full text of this license, see the complete license.
Created by Stefanie Jane 🌠