Freelancers using Next.js in São Paulo
Freelancers using Next.js in São Paulo
Sign Up
Post a job
Sign Up
Log In
Filters
2
Projects
People
Icaro Asas Virtuais
State of São Paulo, Brazil
Web Developer & Solutions Architect
$5k+
Earned
3x
Hired
5.0
Rating
16
Followers
Follow
Message
Web Developer & Solutions Architect
4
In a single night I was able to build this awesome diary PWA using by applying my very own framework architecture with Google AI Studio. I'm actually using the app myself for the first time in my career, like I'm the user of my own craft, can't believe I finally made it. Now I can think of how I can sell it, but for you who are reading here you can also enjoy the app for free at the link: https://easyaichatdiary.vercel.app/
1
4
95
2
I was able to build a working AI generated RPG app in 2 days with Google Gemini 3 and my very own framework asasvirtuais (https://github.com/asasvirtuais/asasvirtuais-framework). I used Airtable to store the data and generate images and text based on user provided definitions of the game elements (cards, characters, missions).
2
116
1
Fullstack Developer to Build Bilingual Course Platform MVP
1
16
1
Lead qualification SPA with Airtable and React
1
24
Next.js
(3)
Follow
Message
Cristian Anterio
São Paulo, Brazil
Skilled Software Engineer ready to build you next web app
5.0
Rating
26
Followers
Follow
Message
Skilled Software Engineer ready to build you next web app
23
Hey everyone! I’ve been experimenting with a small AI-powered tool for freelancers and I’d love your feedback! 👉 FairRate – Smart Pricing for Freelancers (https://studio--studio-467457356-8d2ad.us-central1.hosted.app/) It’s a simple proof of concept that helps you estimate a fair rate for any job — just paste a project description, choose your experience level and region, and the AI gives you a price range with a short explanation. I built it to solve something I often see here on Contra and among other freelancers that are unsure how much to charge for new projects. I’d love to know what you think, what works, what doesn’t 👀, what could be better. If you have a minute, play around with it, and please drop any feedback or ideas in the comments (is it realistic? not even close?)!
9
23
300
0
FairRate: AI-Powered Pricing Estimation Tool for Freelancers
0
4
29
Hey all! Me again :) This time, I'm building something for our health 💪. We all love the freedom of freelancing, but it's too easy to forget to take breaks and move our bodies. That's why I'm using Builder to create a simple app that times our work sessions and reminds us to take healthy breaks with guided stretches. It's all about working smarter without forgetting to take care of ourselves! What do you think? 😁
2
29
442
18
I recently built a landing page for a law firm — but it’s not just a landing page. It’s a way to connect real people with real legal solutions 🤝 . Every section was designed to build trust, highlight expertise, and guide visitors toward what truly matters: solving their problems. Because in the end, great design isn’t only about looks — it’s about creating meaningful connections between professionals and the clients who need them most. If you’re ready to turn your services into something people can feel and trust, let’s talk.
18
232
Next.js
(1)
Follow
Message
Heber Conrado
São Paulo, Brazil
n8n Automation & AI Workflows for Growing Businesses
New to Contra
Follow
Message
n8n Automation & AI Workflows for Growing Businesses
0
Kinetic Dashboard — SaaS Front-End Experience Kinetic Dashboard is a high-performance front-end built for modern SaaS applications, focused on usability, scalability, and real-time data-driven decision making. This project was developed using solid engineering and product design principles, delivering a smooth, intuitive, and highly responsive user experience. 🔹 Key Features & Strengths 1. Modern data-driven UI/UX Clean and professional interface with clear visual hierarchy, making it easy to analyze critical metrics such as performance, workflows, and operational insights. 2. Scalable architecture (SaaS-ready) Built to scale, enabling seamless integration with multiple services, APIs, and environments (multi-region and multi-tenant ready). 3. Optimized performance Fast rendering, reusable components, and efficient state management ensure smooth performance even with large data volumes. 4. Consistent Design System Standardized visual patterns (colors, typography, spacing, components) for easier maintenance and long-term product evolution. 5. Executive dashboard focus Strategic data visualization with clear KPIs, trend indicators (↑ ↓), and quick insights for decision-making. 6. User-centered experience Intuitive navigation with a structured sidebar, visual feedback (status, alerts, progress), and quick actions like report export. 7. Compliance-ready (GDPR & UX best practices) Includes essential components such as cookie consent and privacy-focused UX for global applications. 8. Modular and reusable components Well-structured component system that simplifies maintenance, testing, and scalability. 💡 Technologies & Best Practices Component-based architecture API integrations Fully responsive design Clean Code principles Accessibility and readability focus 🚀 Outcome A robust, elegant, and production-ready SaaS dashboard, ideal for companies that need to monitor operations, workflows, and performance in real time with clarity and efficiency. If you're looking for a professional SaaS front-end focused on performance, scalability, and user experience, Kinetic Dashboard represents the level of quality I deliver. Link - kinetic-dashboard-hmdphc48w-heberconrado-4074s-projects.vercel.app (https://kinetic-dashboard-hmdphc48w-heberconrado-4074s-projects.vercel.app)
0
32
0
N8N WhatsApp Financial Bot — Portfolio Explanation Overview This workflow is a WhatsApp-based personal finance bot built in N8N. Users interact with it by sending text commands directly via WhatsApp, and the bot responds with debt tracking, income recording, and financial reports — all stored in a PostgreSQL database. Integrations Used IntegrationPurposeEvolution API + WhatsAppReceives and sends WhatsApp messagesPostgreSQLStores debts, income records, and financial dataN8N Code NodesParses commands and formats responsesWebhookEntry point for incoming messages Flow Breakdown 0. Setup — Create Tables Criar tabelas (executar 1x) A one-time PostgreSQL node that creates the necessary database tables before the flow goes live. Run once during setup. Webhook (Entry Point) Webhook Configured with the Evolution API to receive all incoming WhatsApp messages via HTTP POST. Setup requires pointing the Evolution instance's Webhook URL to this node and subscribing to the messages.upsert event. Extract Message Extrair mensagem A Code node reads the Evolution API's JSON payload and extracts: The message text (lowercased) The sender's phone number The sender's name from WhatsApp Security Filter — My Number Only Filtro — só meu número A security gate that only allows messages from the owner's own number to proceed. Any message from an unknown number is silently ignored and a 200 OK is returned to avoid retries. Switch — Command Detection Switch — comando Routes the flow based on the command detected in the message: CommandActionmenuShows the options menudividaDebt registration flowrecebiIncome registration flowrelatorioFinancial report flow(anything else)Fallback / ignored Menu Menu Montar Generates and sends a formatted options menu to the user via WhatsApp, listing all available commands with usage examples. Parse Debt Command Parsear dívida Extracts structured data from the /divida command. Expected format: /divida [name] [value] Parse Income Command Parsear receber Extracts structured data from the /recebi command. Expected format: /recebi [name] [value] 8 & 9. Save to PostgreSQL Salvar dívida / Salvar receber Inserts the parsed debt or income record into the PostgreSQL dividas table, using the configured financial database credentials (host, port, database, user, password). Fetch Report Buscar relatório Runs a PostgreSQL query that returns a financial summary including: Total debts per person Total income received per month Breakdown by fortnight (installment periods) 11a/b/c. Format Messages Formatar mensagens / Confirmar dívida / Confirmar receber / Formatar relatório Three formatting nodes — one per command path — that shape the response into WhatsApp-friendly Markdown (bold, line breaks, currency formatting like R$ 1.000,00). Send WhatsApp Response Enviar WhatsApp Sends the formatted reply back to the user via the Evolution API HTTP endpoint: POST http://{SEU_HOST}/message/sendText/{INSTANCE} with the API key in the request header. Respond to Webhook Responder ao Webhook Returns an HTTP 200 response to the Evolution API to confirm the message was successfully processed and prevent retry loops. Available Commands (User-Facing) CommandDescription/menuShows all available commands/divida [name] [value]Registers a debt owed to you/recebi [name] [value]Logs a payment received/relatorioGenerates a full financial summary report Key Features ✅ WhatsApp-native interface — no app needed, just chat commands ✅ Owner-only security filter — private and protected by default ✅ Multi-command routing — clean switch logic for each feature ✅ PostgreSQL persistence — all financial data stored reliably ✅ Formatted reports — human-readable summaries with WhatsApp Markdown ✅ Webhook handshake — proper HTTP 200 handling to prevent duplicate triggers ✅ Zero UI required — fully operated through natural WhatsApp messages
0
10
0
N8N HR Document Automation Flow — Portfolio Explanation Overview This workflow automates the process of onboarding new employee files into an organized Google Drive structure. Whenever a new file is uploaded to Drive, the system automatically identifies the employee, validates them against a roster, notifies them by email, and logs everything — all without any manual intervention. Integrations Used IntegrationPurposeGoogle DriveDetects new files and moves them to the correct folderGoogle SheetsStores the employee registry for lookupGmailSends notifications and admin alertsN8N Code NodeExtracts and parses data from the file Flow Breakdown 1. Trigger — New File on Drive Novo Arquivo no Drive The flow is triggered automatically whenever a new file is created in a monitored Google Drive folder. This is the entry point — no manual action needed. 2. Extract Name & Data from File Extrair Nome e Dados do Arquivo A Code node parses the uploaded file to extract key information — primarily the employee's name and any relevant metadata embedded in the file name or content. 3. Search Employee in Spreadsheet Buscar Funcionário na Planilha Using the extracted name, the flow queries a Google Sheets spreadsheet (the employee registry) to check whether this person exists in the system. 4. Employee Found? (Conditional Branch) Funcionário Encontrado? A Switch/Router node evaluates the lookup result and splits the flow into two paths: ✅ Path A — Employee Found (True) StepActionMove to Employee FolderThe file is moved to that employee's dedicated Google Drive folderNotify Employee by EmailA Gmail message is sent to the employee confirming the file was receivedSuccess LogA record is written to a Google Sheets log (append/update) ❌ Path B — Employee Not Found (False) StepActionError LogThe failed attempt is recorded in a separate Google Sheets error logAlert Admin by EmailGmail sends an alert to the administrator reporting the unrecognized file Key Features ✅ Fully automated — triggered by file upload, zero manual steps ✅ Smart file routing — files land in the right employee folder automatically ✅ Validation layer — cross-references a live employee spreadsheet before acting ✅ Dual-path error handling — failures are logged and the admin is immediately notified ✅ Audit trail — both successes and errors are recorded in Google Sheets ✅ Email notifications — employees and admins are kept in the loop automatically
0
13
1
N8N WhatsApp AI Agent Flow — Portfolio Explanation Here's a clear breakdown of your automation workflow for your portfolio:
1
64
Next.js
(1)
Follow
Message
Leonardo Cunha
São Paulo, Brazil
Web Developer | Tailoring Solutions for Your Success
Follow
Message
Web Developer | Tailoring Solutions for Your Success
0
Flash Offers Platform
0
15
0
Responsive Landing Page
0
1
0
Continuous maintenance and enhancement of company's website
0
6
View more →
Next.js
(1)
Follow
Message
Sabrina Mesquita
São Paulo, Brazil
UI/UX designer building modern, high-converting websites
New to Contra
Follow
Message
UI/UX designer building modern, high-converting websites
1
ClinicaPro Website Design A modern healthcare experience designed to build trust, present services with clarity, and make booking simple and intuitive.
3
1
60
1
Luxury Real Estate Website Design A modern website designed to showcase premium properties with a clean, immersive and high-converting experience.
1
40
1
Travel Experience Website – Refúgio nas Dunas A modern travel website designed to showcase a unique destination experience inspired by the Lençóis Maranhenses. The goal was to create an immersive and visually engaging interface that captures the atmosphere of the place while guiding users through a clear and intuitive journey. The design focuses on strong imagery, clean layout, and a refined visual direction to highlight the experience and encourage exploration. Built with a complete design system, reusable components, and a structure ready for development.
1
1
70
1
Luxury Car Marketplace Website A modern automotive website designed to showcase premium vehicles with a clean, high-impact and conversion-focused experience.
1
50
Next.js
(3)
Follow
Message
Caio Cerano
São Paulo, Brazil
Crafting intuitive and engaging websites
Follow
Message
Crafting intuitive and engaging websites
0
Portfolio Website
0
13
0
REsight
0
9
0
Futuro Absoluto
0
8
View more →
Next.js
(1)
Follow
Message
Lucas Nicolau
São Paulo, Brazil
Expert Mobile Apps with Flutter & React Native
5.0
Rating
2
Followers
Follow
Message
Expert Mobile Apps with Flutter & React Native
1
Teacher AI
1
11
0
Digital Version of "Choreography Cards for Pole Dancers"
0
14
0
Secure Banking Application for Neon
0
26
0
Open Source Podcast App using TuneURL SDK
0
12
Next.js
(1)
Follow
Message
Jean Oliveira
São Paulo, Brazil
Custom apps, platforms and digital solutions
New to Contra
Follow
Message
Custom apps, platforms and digital solutions
1
Development of automotive product launch landing pages supporting digital marketing campaigns. Contributed to responsive layouts, interactive components and performance optimizations as part of a development team building high-traffic automotive websites.
1
37
0
Contributed to the development and customization of enterprise e-commerce platforms serving global consumer brands. Focused on front-end improvements, integrations and performance optimization within high-traffic online stores.
0
30
1
Design and development of the Hauscript website, presenting services focused on custom platforms, applications and digital solutions.
1
21
1
Development and improvements for digital platforms focused on online ticket sales and travel booking experiences. Worked on user interfaces and booking flows designed to support scalable travel services.
1
26
Next.js
(3)
Follow
Message
Explore people