CS 491 Capstone Project Presentation Website
TANIT (pronounced "tah-NEET") is an AI-powered social media partner that helps small businesses create stunning Instagram posts, reels, and stories effortlessly.
- Built with Astro 5.7
- Responsive design using Tailwind CSS
- Smooth & subtle micro-interactions
- Optimized images with Astro's built-in image optimization
- Modern SEO practices
- Accessibility-friendly components
- Fast page transitions with View Transitions API
TANIT allows small-to-medium businesses to easily manage their Instagram campaigns including stories, posts, and reels. The platform features:
- AI-Powered Content Creation: Upload photos and prompts to instantly generate professional content
- Smart Scheduling: Automated publishing at optimal engagement times
- Special Day Posts: Automatic holiday and occasion content recommendations
- Virtual Try-On: AI-powered visualization for boutiques and clothing stores
- Multi-Platform Access: Website and WhatsApp bot integration
/
├── public/ # Static assets like images and favicons
├── src/
│ ├── assets/ # Images processed by Astro
│ ├── components/ # Reusable UI components
│ ├── layouts/ # Page layouts
│ ├── pages/ # Page components and routes
│ ├── scripts/ # Client-side JavaScript
│ └── styles/ # Global CSS and utility styles
├── .gitignore
├── astro.config.mjs # Astro configuration
├── package.json # Project dependencies
├── tailwind.config.mjs # Tailwind CSS configuration
└── tsconfig.json # TypeScript configuration
- Sümeyye Acar
- Muhammed Furkan Başıbüyük
- Kutay Buyruk
- Ömer Bıçakcıoğlu
- Betül Doğrul
- Node.js (v18.14.1 or higher)
- npm or yarn or pnpm
- Clone the repository:
git clone https://github.com/tanit-project/tanit-project.github.io.git
cd tanit-presentation- Install dependencies:
npm install- Run the development server:
npm run dev- Open your browser and navigate to
http://localhost:4321
To build the site for production, run:
npm run buildThe build output will be in the dist/ directory.
To preview the production build locally:
npm run previewThe project uses Tailwind CSS for styling. You can customize the styles by modifying:
tailwind.config.mjs- For theme configurationsrc/styles/global.css- For global styles and custom utility classes
Update the content of the site by modifying the components in the src/components/ directory and the pages in the src/pages/ directory.
- Place static images that don't need processing in the
public/directory - Place images that need optimization in the
src/assets/directory
To add a new page, create a new .astro file in the src/pages/ directory. The file path will determine the route.
For example:
src/pages/blog.astrowill be accessible at/blogsrc/pages/blog/[slug].astrowill create dynamic routes for blog posts
The site uses a combination of:
- CSS animations defined in
src/styles/global.css - Intersection Observer for triggering animations on scroll
- GitHub Repository: https://github.com/tanit-project/tanit-project.github.io
- Project Reports: Available in the Resources section
- API Documentation: Coming soon
- Demo Video: Coming soon
Tanıt (pronounced "tah-NEET") is named after the ancient Phoenician goddess of fertility and the moon. Our AI-powered platform brings life to your social media presence, much like the goddess brought prosperity to ancient civilizations.
This project is open source and available under the MIT License.