A modern real estate platform built with Vue 3, TypeScript, and Vite.
- Modern UI with Tailwind CSS
- Responsive design
- Interactive components with Swiper
- Smooth animations with Vue3 Marquee and GSAP
- Type-safe development with TypeScript
- Frontend Framework: Vue 3 with Composition API
- Build Tool: Vite
- Language: TypeScript
- Styling: Tailwind CSS
- UI Components:
- Swiper for testimonials
- Vue3 Marquee for agents
- Animations:
- GSAP for scroll-triggered animations
- Vue3 Marquee for continuous animations
- Development Tools:
- TypeScript for type safety
- Vue TSConfig for Vue-specific TypeScript configuration
- Clone the repository:
git clone https://github.com/rowleks/realfy.git
cd realfy- Install dependencies:
yarn install- Start the development server:
yarn devrealfy/
├── src/
│ ├── assets/ # Static assets
│ ├── components/ # Reusable Vue components
│ ├── layouts/ # Layout components
│ ├── utils/ # Utility functions
│ │ ├── animations/ # GSAP animation utilities
│ │ │ ├── base.ts # Base animation utilities
│ │ │ └── [component].ts # Component-specific animations
│ │ └── data/ # Data fetching utilities
│ ├── views/ # Page components
│ ├── App.vue # Root component
│ └── main.ts # Application entry point
├── public/ # Public static files
└── ...config files
The project uses GSAP (GreenSock Animation Platform) for creating smooth, scroll-triggered animations. The animation system is modular and organized as follows:
- Common animation functions and types
- ScrollTrigger configuration
- Animation creation helpers
- Cleanup utilities
Each component has its own animation file in the utils/animations folder:
miniListing.ts- Property listings animationsminiAbout.ts- About section animationsminiBlogList.ts- Blog section animationscategories.ts- Property categories animationscontactSection.ts- Contact section animationsmetricsSection.ts- Metrics section animationsprocessSection.ts- Process section animationsagents.ts- Agents section animationstestimonials.ts- Testimonials section animationsfaqSection.ts- FAQ section animations
- Scroll-triggered animations
- Staggered animations for lists and grids
- Fade and slide effects
- Scale transformations
- Responsive animation triggers
- Proper cleanup on component unmount
yarn dev- Start development serveryarn build- Build for productionyarn preview- Preview production build
The project uses several configuration files:
vite.config.ts- Vite configurationtsconfig.json- TypeScript configurationpostcss.config.mjs- PostCSS configurationtailwind.config.js- Tailwind CSS configuration
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2025 Realfy
I'd love your input! I want to make contributing to Realfy as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
In short, when you submit code changes, your submissions are understood to be under the same MIT License that covers the project. Feel free to contact me if that's a concern.
Report bugs using GitHub's issue tracker
I use GitHub issues to track public bugs. Report a bug by opening a new issue; it's that easy!
Great Bug Reports tend to have:
- A quick summary and/or background
- Steps to reproduce
- Be specific!
- Give sample code if you can.
- What you expected would happen
- What actually happens
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)
- Use TypeScript for type safety
- Follow Vue 3 Composition API best practices
- Use Tailwind CSS for styling
- 2 spaces for indentation rather than tabs
- You can try running
yarn lintfor style unification
By contributing, you agree that your contributions will be licensed under its MIT License.




