Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/AboutPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ import SkillsSection from "./SkillsSection";
import CertificateGallery from "./CertificateGallery";
import PageHeader from "./ui/PageHeader";
import SectionPanel from "./ui/SectionPanel";
import { profile } from "../data/profile";

export default function AboutPage() {
return (
<main className="page-shell">
<PageHeader
eyebrow="About SunilCraft"
title="Builder profile, skills, and rewards"
description="A cleaner view of the person behind SunilCraft: engineering focus, practical skills, and milestone snapshots."
title="Builder profile, craft, and credibility"
description={`A premium overview of ${profile.name}: product thinking, frontend craft, full-stack execution, and the rewards that reflect that growth.`}
align="left"
/>

Expand Down
55 changes: 38 additions & 17 deletions src/components/AboutSection.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from "react";
import { motion } from "framer-motion";
import { profile, services } from "../data/profile";
import Badge from "./ui/Badge";
import "../styles/AboutSection.css";
import profilePic from "/assets/images/profile.png";

Expand All @@ -13,34 +15,47 @@ const AboutSection = () => {
viewport={{ once: true }}
transition={{ duration: 0.7, ease: "easeOut" }}
>
<h2 className="about-title">About Me</h2>
<div className="card-row about-badges">
<Badge tone="accent">{profile.location}</Badge>
<Badge>MCA Journey</Badge>
<Badge tone="success">Production Focus</Badge>
</div>
<h2 className="about-title">Building thoughtful interfaces with engineering depth</h2>

<p className="about-description">
Hello! I’m <strong>Sunil Kumar K V</strong>, a full-stack and front-end
developer from India. I build clean, responsive, and user-friendly
applications using React, JavaScript, Node.js, Express, and modern UI
tools.
<br />
I am currently studying MCA and improving production-level project
skills through real deployments like SunilCraft, ChessPlay, and
DevWithSunil. My strengths are component-based architecture, UI/UX
improvement, API integration, debugging, and learning in public.
<br />
<strong>Skills:</strong> React, JavaScript, HTML5, CSS3, Tailwind CSS,
Node.js, Express, MongoDB, Git, Vite, Framer Motion.
Hello! I&apos;m <strong>{profile.name}</strong>, a developer from India who likes turning
ambitious ideas into clean interfaces, practical full-stack features, and transparent
developer systems. SunilCraft now sits at the center of that work: portfolio storytelling,
coding-journal sync, verified solutions, and engineering dashboards in one place.
</p>
<p className="about-description">
My strongest areas are frontend architecture, UI/UX refinement, routing and state cleanup,
API integration, debugging, and shipping improvements that make products feel calmer and
more intentional. I&apos;m especially motivated by projects that need both polish and
structure.
</p>

<div className="about-pillars">
{services.slice(0, 4).map((service) => (
<article className="about-pillar" key={service.title}>
<h3>{service.title}</h3>
<p>{service.description}</p>
</article>
))}
</div>

<div className="about-details">
<div className="about-card">
<h3>10+</h3>
<p>Projects Built</p>
<p>Projects built and iterated</p>
</div>
<div className="about-card">
<h3>3+</h3>
<p>Live Deployments</p>
<p>Live deployments maintained</p>
</div>
<div className="about-card">
<h3>2+</h3>
<p>Years Experience</p>
<p>Years of hands-on growth</p>
</div>
</div>
</motion.div>
Expand All @@ -52,7 +67,13 @@ const AboutSection = () => {
viewport={{ once: true }}
transition={{ duration: 0.7, ease: "easeOut", delay: 0.3 }}
>
<img src={profilePic} alt="About Me" />
<div className="about-image-frame">
<img src={profilePic} alt="About Me" />
<div className="about-image-note">
<strong>{profile.role}</strong>
<span>Clean UI, reliable routing, live developer data, and product-minded iteration.</span>
</div>
</div>
</motion.div>
</section>
);
Expand Down
194 changes: 133 additions & 61 deletions src/components/ContactSection.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import React, { useState } from "react";
import { motion } from "framer-motion";
import emailjs from "@emailjs/browser";
import { FaEnvelope, FaGithub, FaLinkedinIn, FaMapMarkerAlt } from "react-icons/fa";
import { profile } from "../data/profile";
import PageHeader from "./ui/PageHeader";
import SectionPanel from "./ui/SectionPanel";
import Badge from "./ui/Badge";
import "../styles/ContactSection.css";

const ContactSection = () => {
Expand Down Expand Up @@ -72,67 +77,134 @@ const ContactSection = () => {
};

return (
<section className="contact" id="contact">
<div className="contact-header">
<h2 className="contact-title">Let's Work Together</h2>
<p className="contact-subtitle">
Have a project or idea? I'd love to hear from you.
</p>
</div>

<form onSubmit={handleSubmit} className="contact-form">
{["name", "email", "message"].map((field, i) => (
<motion.div
key={field}
custom={i}
initial="hidden"
animate="visible"
variants={inputVariants}
>
{field !== "message" ? (
<input
type={field === "email" ? "email" : "text"}
name={field}
placeholder={`Your ${
field.charAt(0).toUpperCase() + field.slice(1)
}`}
value={formData[field]}
onChange={handleChange}
required
/>
) : (
<textarea
name="message"
placeholder="Your Message"
value={formData.message}
onChange={handleChange}
rows="5"
required
></textarea>
)}
</motion.div>
))}

<motion.button
type="submit"
disabled={isSending}
whileHover={{ scale: isSending ? 1 : 1.05 }}
whileTap={{ scale: 0.95 }}
>
{isSending ? "Sending..." : "Send Message"}
</motion.button>

{status.message && (
<motion.p
className={`form-status ${status.type}`}
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
>
{status.message}
</motion.p>
)}
</form>
</section>
<main className="page-shell">
<PageHeader
eyebrow="Contact"
title="Let’s build something useful and well-crafted"
description="For frontend polish, dashboard architecture, portfolio systems, and production-ready React work, this page is designed to make the next step easy."
align="left"
/>

<SectionPanel
eyebrow="Collaboration"
title="Start a conversation"
description="Reach out with a feature idea, UI cleanup request, portfolio upgrade, or product concept. I’m most helpful when the work needs both technical structure and visual refinement."
>
<div className="contact-layout">
<div className="contact-column contact-summary">
<div className="card-row">
<Badge tone="accent">Frontend Systems</Badge>
<Badge>React + Vite</Badge>
<Badge tone="success">Available</Badge>
</div>

<div className="contact-intro">
<h3>Best fit engagements</h3>
<p>Developer portfolios, engineering dashboards, routing cleanup, mobile-first UI refinement, and production-ready frontend/full-stack features.</p>
</div>

<div className="contact-methods">
<a href={`mailto:${profile.email}`} className="contact-method">
<FaEnvelope />
<div>
<strong>Email</strong>
<span>{profile.email}</span>
</div>
</a>
<a href={profile.github} target="_blank" rel="noreferrer" className="contact-method">
<FaGithub />
<div>
<strong>GitHub</strong>
<span>See active builds and coding-journal sync</span>
</div>
</a>
<a href={profile.linkedin} target="_blank" rel="noreferrer" className="contact-method">
<FaLinkedinIn />
<div>
<strong>LinkedIn</strong>
<span>Professional profile and collaboration context</span>
</div>
</a>
<div className="contact-method static">
<FaMapMarkerAlt />
<div>
<strong>Location</strong>
<span>{profile.location}</span>
</div>
</div>
</div>

<div className="contact-trust-grid">
<article className="glass-card">
<h3>UI/UX Cleanup</h3>
<p>Turning cluttered flows into clearer, more premium product surfaces.</p>
</article>
<article className="glass-card">
<h3>Developer Platforms</h3>
<p>Problems, codebase, analytics, and synced engineering views built around live data.</p>
</article>
<article className="glass-card">
<h3>Production Mindset</h3>
<p>Routing, responsive layouts, build safety, and implementation detail all treated seriously.</p>
</article>
</div>
</div>

<div className="contact-column">
<form onSubmit={handleSubmit} className="contact-form">
{["name", "email", "message"].map((field, i) => (
<motion.div
key={field}
custom={i}
initial="hidden"
animate="visible"
variants={inputVariants}
>
{field !== "message" ? (
<input
type={field === "email" ? "email" : "text"}
name={field}
placeholder={`Your ${field.charAt(0).toUpperCase() + field.slice(1)}`}
value={formData[field]}
onChange={handleChange}
required
/>
) : (
<textarea
name="message"
placeholder="Tell me what you’re building, where it feels stuck, and what kind of help you need."
value={formData.message}
onChange={handleChange}
rows="7"
required
></textarea>
)}
</motion.div>
))}

<motion.button
type="submit"
disabled={isSending}
whileHover={{ scale: isSending ? 1 : 1.01 }}
whileTap={{ scale: 0.99 }}
>
{isSending ? "Sending..." : "Send Message"}
</motion.button>

{status.message && (
<motion.p
className={`form-status ${status.type}`}
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
>
{status.message}
</motion.p>
)}
</form>
</div>
</div>
</SectionPanel>
</main>
);
};

Expand Down
Loading
Loading