Inside of your Astro project, you'll see the following folders and files:
- Node.js v23.x
/
├── 📁src
│ ├── 📁components
│ │ ├── 📁AboutMe
│ │ │ ├── AboutMe.astro
│ │ │ ├── Card.astro
│ │ │ ├── Card2.astro
│ │ │ ├── DeskAnimation.astro
│ │ │ └── ProgramingAnimation.astro
│ │ ├── 📁Extra
│ │ │ ├── Coffee.astro
│ │ │ ├── Extra.astro
│ │ │ └── RecordPlayer.astro
│ │ ├── Beam.jsx
│ │ ├── BongoCat.astro
│ │ ├── Card.astro
│ │ ├── ClientTimeline.jsx
│ │ ├── DevelopmentToolsOrbit.astro
│ │ ├── DownloadButton.astro
│ │ ├── Education.astro
│ │ ├── Experiencie.astro
│ │ ├── Footer.astro
│ │ ├── HoverEffect.tsx
│ │ ├── InformationResume.astro
│ │ ├── MovingBorder.astro
│ │ ├── Navbar.astro
│ │ ├── Presentacion.astro
│ │ ├── ProfileImage.astro
│ │ ├── Project.astro
│ │ ├── ProjectCard.astro
│ │ ├── SkillSection.astro
│ │ ├── Skills.astro
│ │ └── Testimonial.astro
│ ├── 📁data
│ │ ├── education.ts
│ │ ├── experiences.ts
│ │ ├── proyects.ts
│ │ ├── skills.ts
│ │ └── testimonials.ts
│ ├── env.d.ts
│ ├── 📁js
│ │ └── scrollLineAnimation.js
│ ├── 📁layouts
│ │ ├── Layout.astro
│ │ └── MarkdownLayout.astro
│ ├── 📁lib
│ │ └── utils.js
│ └── 📁pages
│ ├── index.astro
│ └── sistema-contable.md
├── astro.config.mjs
├── package.json
├── README.md
├── tailwind.config.mjs
└── tsconfig.json
