Muhammad Saifullah - AI Video Producer | Contra
Work by Muhammad Saifullah
Sign Up
Post a job
Sign Up
Log In
Muhammad Saifullah
Web Developer | UI/UX| 3D Product Animation |
Message
Follow
New to Contra
Muhammad is ready for their next project!
Followed by
Kiyosetcode
,
Eniola S
, and
Amjad A
Islamabad, Pakistan
Work
Posts
Services
About
Islamabad, Pakistan
0
π¨ Big reveal on the skyline! π¨ I build custom, animated, and fully responsive portfolio websites β no templates, no shortcuts, 100% built from scratch. β Custom design tailored to you β Fully responsive (Mobile / Tablet / PC) β Modern UI/UX with smooth animations Ready to unveil your own standout portfolio? Let's work together π https://fiverr.com/createdbysaif
0
49
0
π€ Velaro β Technical Architecture π Live Website https://saif-velaro-clothing-brand.netlify.app π Overview Velaro is a single-page application (SPA) for a fashion/clothing brand, built with React + TypeScript, bundled by Vite, and styled with Tailwind CSS. The entire UI renders on one HTML page and updates dynamically as the user scrolls, searches, or interacts with the cart β no full page reloads. The architecture follows a standard modern frontend pattern: a single entry point boots the app, a root App component composes independent section components, and a global context manages shared state (the shopping cart) across all of them. βοΈ Build & Tooling Layer These files configure how the project compiles, lints, and runs β they aren't part of the visible website, but control everything behind it. vite.config.ts β Configures Vite, the build tool/dev server. Defines how .tsx/.ts files are compiled, how the dev server runs (npm run dev), and how the production bundle is generated (npm run build). tsconfig.json β Root TypeScript config β points to the two more specific configs below via project references. tsconfig.app (http://tsconfig.app).json β TypeScript rules specifically for the application code in src/ (JSX handling, module resolution, strictness, the @/ path alias). tsconfig.node.json β TypeScript rules for Node-context files (like vite.config.ts itself), since those run outside the browser. tailwind.config.js β Configures Tailwind CSS β defines the design system (colors, spacing, fonts) and which files Tailwind scans to generate only the CSS classes actually used. postcss.config.js β Configures PostCSS, the tool that processes Tailwind's output and applies vendor prefixing/optimization during build. eslint.config.js β Defines linting rules β catches code-quality issues, unused variables, and React/TypeScript best-practice violations during development. package.json β Lists all dependencies (React, Vite, Tailwind, etc.) and defines the npm scripts (dev, build, preview). package-lock.json β Locks exact dependency versions so the build is reproducible across machines. .gitignore β Tells Git which files/folders to exclude from version control (e.g. node_modules, dist). index.html β The single real HTML file. Contains a root <div> that React mounts into β everything else is injected by JavaScript. dist/ β Auto-generated production build output (plain HTML/CSS/JS) created by npm run build. This is the folder actually deployed to Netlify. node_modules/ β Auto-generated folder holding all installed dependencies (created by npm install, never edited manually). πͺ Application Entry & Root src/main.tsx β The true entry point of the app. Imports React, imports App.tsx, and mounts it into the <div> inside index.html. This is the first application code that runs. src/App.tsx β The root component. Doesn't contain page content itself β instead it imports and arranges every section component (Navbar, Hero, About, etc.) in order, and wraps everything in the CartProvider so cart state is available app-wide. src/index.css β Global stylesheet β imports Tailwind's base/utility layers, applied once at the root so every component can use Tailwind classes. src/vite-env.d.ts β TypeScript type declarations for Vite-specific features (like importing images/CSS as modules) β lets TypeScript understand syntax that isn't standard JavaScript. π State Management src/cart.tsx β Implements the CartProvider, a React Context that holds global cart state (items, quantities, totals) and exposes functions to add/remove items. Any component wrapped inside it (via App.tsx) can read or update the cart without prop-drilling. src/data.ts β Static data module β likely product listings, collection info, or other content consumed by components like FeaturedCollection and Showcase, kept separate from UI logic. π§± Component Layer (src/components/) Each file is a self-contained, single-responsibility UI section. App.tsx stacks them vertically to form the full page. Navbar.tsx β Persistent top navigation β branding, menu links, and likely triggers for search/cart. Hero.tsx β The primary landing banner β headline, tagline, and call-to-action (e.g. "Shop Collection"). HeroCanvas.tsx β A visual/animated layer paired with Hero.tsx β likely a canvas-based or decorative background effect behind the hero text. FeaturedCollection.tsx β Renders a curated set of products, pulling structured data from data.ts. About.tsx β Brand-story section β static content describing the label's identity. Lookbook.tsx β A style/editorial gallery β visually presents outfits or campaign imagery. Showcase.tsx β An additional highlight section, likely for a specific collection, drop, or promotional content. Testimonials.tsx β Displays customer reviews/social proof. Newsletter.tsx β Email capture form/section for marketing signups. SearchOverlay.tsx β A modal/overlay component for in-site product search, toggled from the Navbar. CartDrawer.tsx β A slide-out panel UI that reads from the CartProvider (cart.tsx) to display current cart items and totals. Footer.tsx β Bottom-of-page section β links, contact details, social icons. π How It All Connects (Data Flow) The browser loads index.html, which pulls in the compiled JS bundle. main.tsx runs first and mounts App.tsx into the page. App.tsx wraps all sections in CartProvider, so cart state is shared without passing props down manually through every component. Each section component renders independently β some are purely static/presentational (About, Footer), while others are interactive and tied into shared state (CartDrawer, SearchOverlay). Tailwind classes used throughout every component are compiled once into index.css based on what's scanned via tailwind.config.js. On npm run build, Vite compiles and bundles all of this into optimized static files inside dist/ β which is what gets deployed to Netlify and served to visitors. π§ Why This Structure Works Separation of concerns β each component owns one visual section; layout composition happens only in App.tsx. Centralized state β cart logic lives in one file (cart.tsx) instead of being duplicated across components. Data/UI separation β data.ts keeps content separate from rendering logic, making it easy to update products without touching component code. Type safety β TypeScript configs enforce consistent typing across the whole src/ folder, catching errors before runtime. Optimized output β the dev-only tooling (Vite, Tailwind, ESLint, TS configs) never ships to production; only the final compiled dist/ bundle is deployed.
0
55
0
StreamPro β Brand Website for a Live Event Broadcasting Studio Live Website: saif-stream-pro-website.netlify.app (http://saif-stream-pro-website.netlify.app) What I builtπ A fully responsive, mobile and web based single-page marketing website for StreamPro, a Brisbane-based live-streaming production studio that broadcasts memorial services, weddings, sports events, and community occasions. The site was designed and developed from scratch to establish a premium, trustworthy brand presence and convert visitors into booking inquiries β working seamlessly whether accessed from a phone, tablet, or desktop. What it doesπ The website guides visitors through a structured narrative β introducing the brand, building credibility, showcasing services, explaining the booking process, displaying social proof, and closing with a direct contact/quote form. It's built to load fast, adapt fluidly across mobile and web based environments, and feel as polished and reliable as the broadcast service it's selling. Core concepts & techniques appliedπ― Semantic document structure β content organized into meaningful, accessible sections rather than generic divs, improving both SEO and screen-reader usability. Design system / design tokens β a centralized set of reusable variables (colors, gradients, typography, spacing) so the entire visual identity stays consistent and can be updated globally from one place. Responsive, mobile-first layout design β fluid grids and breakpoints so the layout adapts smoothly across mobile and web based screens without needing separate versions. Scroll-based interactivity β dynamic navbar states, scrollspy navigation (highlighting the active section as the user scrolls), and progressive scroll-reveal animations for content. DOM manipulation & event handling β mobile menu toggling, animated statistic counters, and form interaction logic, all built with vanilla JavaScript (no frameworks). Accessibility considerations β visible focus states, reduced-motion support for users sensitive to animation, and descriptive alt text on all imagery. Brand identity integration β a custom 3D gradient logo mark and supporting visual graphics applied consistently across the navigation, hero section, and footer to reinforce brand recognition. Conversion-focused UX β strategic placement of trust signals (stats, testimonials, direct phone contact) and a structured lead-capture form to turn visitors into inquiries. Outcomeπ A performant, framework-free static website that's lightweight, cheap to host, easy to maintain, fully mobile and web based responsive, and built entirely around fundamental web development principles β structure, styling systems, interactivity, accessibility, and conversion design.
0
99
1
π BRAND STRATEGY β CASE STUDY βοΈ Koia Objects: Making the Photography Match the Positioning Goal: Closing the gap between what Koia Objects makes and how it is seen β using photography as the proving ground for the brand's design logic. πΈβ¨ 1. π― The Brief Koia Objects is a Swedish stainless steel tableware and serving brand, two years in, with a design sensibility that sits deliberately between two traditions: ποΈ Bauhaus Rationalism (Mies van der Rohe): Form follows function & industrial precision. πΏ Nordic Warmth (Alvar Aalto): Human-centric design that keeps precision warm rather than cold. π° The Positioning: Accessible Premium β not luxury, not budget, but a fair price for genuine material quality and craftsmanship. β‘ The Challenge: This positioning has to be felt, not stated. It must be built into every decision the brand makes, starting with how the product is photographed. 2. π The Diagnosis Most young premium tableware brands drift into one of two failure modes: π« The Catalog Trap (Current State): Flat white backgrounds, even front-on lighting, centered objects. It looks like a cheap e-commerce listing and flattens the way light moves across brushed steel. π« The Overcorrection (To Avoid): Dark moody backdrops, heavy gold rim-lighting, and fake luxury marble. It looks like an imitation of luxury watch ads and ignores both Bauhaus and Nordic roots. π‘ The Fix: Build a third direction grounded in Koiaβs true design lineage rather than borrowed conventions. 3. βοΈ The Design Logic Translating "Bauhaus Rationalism + Nordic Warmth" into 5 concrete photographic principles: π·οΈ PrincipleπΌοΈ, What It Means in a Photographπ οΈ Function, Visible Show the object doing its job (pouring, serving, being held). Function is the whole premise.β¨ Material Honesty Real ,directional light on real steel. Let reflections show weight and precision without over-retouching.πͺ΅ Restraint in Styling Few, purposeful props (raw wood, linen, stone). Nothing on set unless it earns its place.βοΈ Warm Directional Light .Soft daylight or a single warm key light instead of flat, cold studio flashes.π‘ Grounded Negative Space, Generous breathing room on a real surface (table, hand, counter) β never a void. 4. π¬ The Direction, Made Concrete π Shot List πΌοΈ Hero Shot: The object alone on a real surface (oiled wood, honed stone) with soft single-direction daylight. π§ In-Use Shot: The object mid-function (pouring water, serving food, lifted by a hand). π Material Macro: A tight crop on an edge, weld line, or brushed surface to prove craftsmanship. π½οΈ Grounded Flat Lay: The product with 2β3 purposeful props (linen, raw ceramic, cut citrus) and generous breathing room. 5. π Before / After β Case Study πΊ Object: Stainless Steel Serving Pitcher β BEFORE (Catalog Default): Shot dead-on against a white seamless background with flat lighting. The steel looks flat, generic, and cheap. β AFTER (Koia Direction): Shot at a slight angle on an oiled walnut counter, lit by soft side daylight. Highlights catch the spout, shadows add depth, and water is captured mid-pour into a glass. π Why It Works: Highlights prove the metalwork quality, the pour proves function, and the warm wood adds Nordic cozy vibes without clutter! 6. π Why This Matters Commercially π·οΈ Shifts Value Perception: Replaces price comparison with craftsmanship appreciation ("This is clearly better made"). π¦ Scalable Framework: The 5 principles extend directly to packaging, website UI, and social content as the brand scales. Prepared as an example project β Koia Objects Brand Strategy Engagement. π
1
99