Update src/app/page.tsx
This commit is contained in:
@@ -12,6 +12,7 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||
import { Bot, Brain, Code, Cloud, Database } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -39,6 +40,7 @@ export default function LandingPage() {
|
||||
{ name: "Skills", id: "#skills" },
|
||||
{ name: "Projects", id: "#projects" },
|
||||
{ name: "Education", id: "#education" },
|
||||
{ name: "Certifications", id: "#certifications" },
|
||||
{ name: "Connect", id: "#contact" }
|
||||
]}
|
||||
/>
|
||||
@@ -82,8 +84,7 @@ export default function LandingPage() {
|
||||
description="As an AI & Robotics Enthusiast, I leverage a diverse skill set in WEB DEVELOPMENT, AI TOOLS, PYTHON, C PROGRAMING, RAG, GITHUB, SOCIAL MEDIA, SQL, and REACTJS to bring innovative ideas to life."
|
||||
features={[
|
||||
{
|
||||
title: "AI & Robotics", description: "Driving innovation in intelligent systems and automation.", bentoComponent: "3d-card-grid",
|
||||
items: [
|
||||
title: "AI & Robotics", description: "Driving innovation in intelligent systems and automation.", bentoComponent: "3d-card-grid", items: [
|
||||
{ name: "Intelligence", icon: Brain },
|
||||
{ name: "Development", icon: Code },
|
||||
{ name: "Cloud", icon: Cloud },
|
||||
@@ -115,21 +116,48 @@ export default function LandingPage() {
|
||||
</div>
|
||||
<div id="projects" data-section="projects" className="mx-auto px-4 md:px-6">
|
||||
<ProductCardThree
|
||||
title="Pioneering Projects & Ventures"
|
||||
description="From innovative AI solutions to impactful startups, my work focuses on pushing the boundaries of technology and creativity."
|
||||
title="My GitHub Projects"
|
||||
description="Explore a selection of my projects, developed with a focus on AI, robotics, and innovative web solutions, all available on GitHub."
|
||||
products={[
|
||||
{ id: "p1", name: "RIKni AI", price: "Startup Founder", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-biorobots-concept_23-2149524393.jpg", imageAlt: "RIKni AI Project", rating: 5 },
|
||||
{ id: "p2", name: "Autonomous Drone Navigation", price: "Innovation Project", imageSrc: "http://img.b2bpic.net/free-photo/drones-exploring-dark-forest-with-blue-lights-futuristic-aesthetic_23-2152000922.jpg", imageAlt: "Autonomous Drone Navigation System", rating: 5 },
|
||||
{ id: "p3", name: "Smart Home AI Assistant", price: "Concept Prototype", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-activating-robot-cleaner_23-2148994180.jpg", imageAlt: "Smart Home AI Assistant", rating: 4 },
|
||||
{ id: "p4", name: "Gesture-Controlled Robotic Arm", price: "Robotics Prototype", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-hydraulic-elements_23-2149333328.jpg", imageAlt: "Gesture-Controlled Robotic Arm", rating: 5 },
|
||||
{ id: "p5", name: "Predictive Maintenance for Robotics", price: "Research Project", imageSrc: "http://img.b2bpic.net/free-photo/industrial-automation-expert-ensures-efficiency-smart-manufacturing-plant-using-industry-4-0_482257-135755.jpg", imageAlt: "Predictive Maintenance for Industrial Robotics", rating: 4 },
|
||||
{ id: "p6", name: "AI-Powered Web Scraper", price: "Tool Development", imageSrc: "http://img.b2bpic.net/free-photo/hands-typing-laptop-top-view_23-2149311919.jpg", imageAlt: "AI-Powered Web Scraper for Data Analytics", rating: 4 }
|
||||
{ id: "p1", name: "RAG-based AI Chatbot", price: "Python / LLMs", imageSrc: "http://img.b2bpic.net/free-photo/ai-chatbot-dialogue-concept_23-2150993963.jpg", imageAlt: "AI Chatbot", onProductClick: () => window.open("https://github.com/rakshithai01/rag-chatbot", "_blank") },
|
||||
{ id: "p2", name: "Autonomous Drone Control", price: "Robotics / Python", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-drone-robot-flies-city_23-2149021647.jpg", imageAlt: "Autonomous Drone", onProductClick: () => window.open("https://github.com/rakshithai01/drone-control", "_blank") },
|
||||
{ id: "p3", name: "ReactJS Portfolio Site", price: "Web Dev / React", imageSrc: "http://img.b2bpic.net/free-photo/front-end-development_23-2150980424.jpg", imageAlt: "Portfolio Site", onProductClick: () => window.open("https://github.com/rakshithai01/portfolio-site", "_blank") },
|
||||
{ id: "p4", name: "SQL Data Analytics Dashboard", price: "SQL / Data Viz", imageSrc: "http://img.b2bpic.net/free-photo/data-analysis-statistics-dashboard_23-2150989354.jpg", imageAlt: "Data Dashboard", onProductClick: () => window.open("https://github.com/rakshithai01/sql-dashboard", "_blank") },
|
||||
{ id: "p5", name: "Machine Learning Model Deployment", price: "ML / Deployment", imageSrc: "http://img.b2bpic.net/free-photo/ai-generated-futuristic-humanoid-robot-with-glowing-circuits_23-2150868102.jpg", imageAlt: "ML Deployment", onProductClick: () => window.open("https://github.com/rakshithai01/ml-deployment", "_blank") },
|
||||
{ id: "p6", name: "Robotic Arm Control Interface", price: "Robotics / UI", imageSrc: "http://img.b2bpic.net/free-photo/robotic-hand-holding-microchip_23-2149524393.jpg", imageAlt: "Robotic Arm UI", onProductClick: () => window.open("https://github.com/rakshithai01/robotic-arm-ui", "_blank") }
|
||||
]}
|
||||
gridVariant="bento-grid"
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Projects section"
|
||||
ariaLabel="GitHub Projects section"
|
||||
/>
|
||||
</div>
|
||||
<div id="certifications" data-section="certifications" className="mx-auto px-4 md:px-6">
|
||||
<FeatureCardNineteen
|
||||
title="Workshop Certifications"
|
||||
description="Showcasing my commitment to continuous learning through workshops and LinkedIn certifications in AI, Robotics, and Web Development."
|
||||
features={[
|
||||
{
|
||||
tag: "AI/ML", title: "Advanced Machine Learning Specialization", subtitle: "Issued by DeepLearning.AI via Coursera", description: "Mastered advanced concepts in deep learning, neural networks, and their applications in real-world scenarios.", imageSrc: "http://img.b2bpic.net/free-photo/ai-chatbot-dialogue-concept_23-2150993963.jpg", imageAlt: "Advanced Machine Learning Certificate", buttons: [{ text: "View Credential", href: "https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", onClick: () => window.open("https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", "_blank") }]
|
||||
},
|
||||
{
|
||||
tag: "Robotics", title: "Robot Operating System (ROS) Basics", subtitle: "Issued by Google via Coursera", description: "Gained foundational knowledge and practical skills in ROS for building and programming robotic systems.", imageSrc: "http://img.b2bpic.net/free-photo/smart-robot-assistant-machine_23-2149305018.jpg", imageAlt: "ROS Basics Certificate", buttons: [{ text: "View Credential", href: "https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", onClick: () => window.open("https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", "_blank") }]
|
||||
},
|
||||
{
|
||||
tag: "Web Dev", title: "React.js Essential Training", subtitle: "Issued by LinkedIn Learning", description: "Completed comprehensive training on building dynamic user interfaces with React, including hooks and context API.", imageSrc: "http://img.b2bpic.net/free-photo/programming-background-with-html-css-js-codes_23-2150171221.jpg", imageAlt: "React.js Certificate", buttons: [{ text: "View Credential", href: "https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", onClick: () => window.open("https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", "_blank") }]
|
||||
},
|
||||
{
|
||||
tag: "AI/ML", title: "Deep Learning Specialization", subtitle: "Issued by DeepLearning.AI via Coursera", description: "Explored advanced deep learning architectures, convolutional neural networks, and recurrent neural networks.", imageSrc: "http://img.b2bpic.net/free-photo/robot-hand-touching-human-hand-concept-ai-human-interaction_23-2150893047.jpg", imageAlt: "Deep Learning Certificate", buttons: [{ text: "View Credential", href: "https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", onClick: () => window.open("https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", "_blank") }]
|
||||
},
|
||||
{
|
||||
tag: "Data", title: "SQL Essential Training", subtitle: "Issued by LinkedIn Learning", description: "Developed proficiency in SQL for data manipulation, querying, and database management.", imageSrc: "http://img.b2bpic.net/free-photo/binary-code-data-background-computing_53876-157920.jpg", imageAlt: "SQL Certificate", buttons: [{ text: "View Credential", href: "https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", onClick: () => window.open("https://www.linkedin.com/in/buddineni-rakshith/details/certifications/", "_blank") }]
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="blur-reveal"
|
||||
ariaLabel="Workshop Certifications section"
|
||||
/>
|
||||
</div>
|
||||
<div id="social" data-section="social" className="mx-auto px-4 md:px-6">
|
||||
@@ -196,7 +224,7 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer" className="mx-auto px-4 md:px-6">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "#home" }, { label: "About", href: "#about" }, { label: "Skills", href: "#skills" }, { label: "Projects", href: "#projects" }, { label: "Education", href: "#education" }] },
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "#home" }, { label: "About", href: "#about" }, { label: "Skills", href: "#skills" }, { label: "Projects", href: "#projects" }, { label: "Education", href: "#education" }, { label: "Certifications", href: "#certifications" }] },
|
||||
{ title: "Connect", items: [{ label: "LinkedIn", href: "https://www.linkedin.com/in/buddineni-rakshith/" }, { label: "GitHub", href: "https://github.com/rakshithai01" }, { label: "RIKni AI", href: "#projects" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 BUDDINENI RAKSHITH. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user