Skip to content

Redesign global background from cyber grid to subtle technical drafting treatment - #18

Merged
AtharvM02222 merged 1 commit into
mainfrom
copilot/redesign-website-background
Aug 21, 2026
Merged

AtharvM02222 merged 1 commit into
mainfrom
copilot/redesign-website-background

Conversation

Copilot AI commented Aug 21, 2026

Copy link
Copy Markdown
Contributor

Replaces the current uniform glowing-style grid with a restrained, handcrafted engineering-drawing background that better matches a real student robotics club identity. The new treatment stays dark, sparse, and unobtrusive so content and robotics imagery remain primary.

  • Background system overhaul (app/globals.css)

    • Reworked .grid-bg from a repeating 20px grid into a layered background composition.
    • Added a near-black graphite base (#0a0d10) and isolated background rendering using pseudo-elements.
  • Irregular technical drafting layer

    • Introduced sparse, asymmetric construction lines and partial grid segments (non-uniform placement and density).
    • Added subtle drafting marks: coordinate-style crosses, measurement ticks, thin reference lines, and tiny labels (RN-26, SYSTEM 01, ROBOTICS, etc.).
    • Technical marks intentionally fade/discontinue across the canvas instead of forming a full-page repeating pattern.
  • Accent and texture constraints

    • Limited #3FCCFC to a few low-intensity micro-accents on technical markings only.
    • Added low-contrast grain/noise texture for depth without introducing glow, HUD effects, particles, gradients, or cyberpunk styling.
.grid-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #0a0d10;
}

.grid-bg::before { /* sparse technical linework + labels */ }
.grid-bg::after  { /* subtle grain texture */ }

Co-authored-by: AtharvM02222 <112397185+AtharvM02222@users.noreply.github.com>
@vercel

vercel Bot commented Aug 21, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
rn-website Ready Ready Preview Aug 21, 2026 5:00pm

@AtharvM02222
AtharvM02222 marked this pull request as ready for review August 21, 2026 17:00
Copilot AI lite review requested due to automatic review settings August 21, 2026 17:00
@AtharvM02222
AtharvM02222 merged commit ec7c491 into main Aug 21, 2026
2 checks passed
@AtharvM02222
AtharvM02222 deleted the copilot/redesign-website-background branch August 21, 2026 17:00

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR redesigns the site-wide .grid-bg background treatment, replacing the previous uniform repeating grid with a darker, sparser “technical drafting” composition plus subtle grain—intended to keep content/robotics imagery visually primary.

Changes:

  • Reworked .grid-bg to use position/isolation and render background layers via ::before (drafting marks) and ::after (grain).
  • Added two non-repeating SVG-based drafting overlays with subtle cyan micro-accents and small labels.
  • Added a repeated low-contrast noise texture layer for depth.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment on lines +19 to +22
.grid-bg > * {
position: relative;
z-index: 1;
}
Comment on lines +36 to +40
background-image:
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='420' viewBox='0 0 560 420'%3E%3Cg fill='none' stroke='%23f3f4f620' stroke-width='1'%3E%3Cpath d='M16 54H242'/%3E%3Cpath d='M112 132H374'/%3E%3Cpath d='M58 212H258'/%3E%3Cpath d='M208 18V176'/%3E%3Cpath d='M304 76V314'/%3E%3Cpath d='M416 26V178'/%3E%3C/g%3E%3Cg fill='none' stroke='%23f3f4f612' stroke-width='1'%3E%3Cpath d='M264 244H540'/%3E%3Cpath d='M386 334H548'/%3E%3Cpath d='M82 292V404'/%3E%3C/g%3E%3Cg fill='none' stroke='%233fccfc42' stroke-width='1'%3E%3Cpath d='M118 132H154'/%3E%3Cpath d='M304 112V146'/%3E%3Cpath d='M420 112H458'/%3E%3C/g%3E%3Cg fill='%23f8fafc36' font-family='monospace' font-size='9' letter-spacing='1'%3E%3Ctext x='26' y='44'%3ERN-26%3C/text%3E%3Ctext x='328' y='68'%3ESYSTEM 01%3C/text%3E%3Ctext x='374' y='258'%3EROBOTICS%3C/text%3E%3C/g%3E%3Cg fill='none' stroke='%23f8fafc26' stroke-width='1'%3E%3Cpath d='M40 346h62m-31-12v24'/%3E%3Cpath d='M462 60h52m-26-10v20'/%3E%3Cpath d='M474 332h34m-17-8v16'/%3E%3C/g%3E%3C/svg%3E"),
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='280' viewBox='0 0 360 280'%3E%3Cg fill='none' stroke='%23f8fafc16' stroke-width='1'%3E%3Cpath d='M20 42H246'/%3E%3Cpath d='M54 108H310'/%3E%3Cpath d='M88 188H328'/%3E%3Cpath d='M114 16V136'/%3E%3Cpath d='M254 72V248'/%3E%3C/g%3E%3Cg fill='none' stroke='%23f8fafc24' stroke-width='1'%3E%3Cpath d='M18 220h42m-21-8v16'/%3E%3Cpath d='M292 46h44m-22-8v16'/%3E%3C/g%3E%3Cg fill='%23f8fafc30' font-family='monospace' font-size='8' letter-spacing='0.8'%3E%3Ctext x='132' y='36'%3EUNIT A3%3C/text%3E%3Ctext x='188' y='176'%3EX-04%3C/text%3E%3C/g%3E%3Cg fill='none' stroke='%233fccfc38' stroke-width='1'%3E%3Cpath d='M254 152V172'/%3E%3Cpath d='M188 188H214'/%3E%3C/g%3E%3C/svg%3E");
background-size: 72rem auto, 30rem auto;
background-position: 4% 3rem, calc(100% - 3rem) calc(100% - 8rem);
Copilot AI added a commit that referenced this pull request Aug 21, 2026
…te-background"

This reverts commit ec7c491, reversing
changes made to 766955f.

Co-authored-by: AtharvM02222 <112397185+AtharvM02222@users.noreply.github.com>
AtharvM02222 added a commit that referenced this pull request Aug 21, 2026
Revert PR #18 background styling merge from current branch

This branch was successfully deployed

1 active deployment
Preview 597bcf95 Deployed Aug 21, 2026 by vercel[bot]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants