diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..4a3e02cb8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,39 @@
+# Node.js / Angular
+node_modules/
+dist/
+npm-debug.log
+yarn-error.log
+package-lock.json
+yarn.lock
+coverage/
+src/**/*.spec.ts
+*.tsbuildinfo
+
+# Python / Flask
+__pycache__/
+*.pyc
+*.pyo
+*.pyd
+*.db
+*.sqlite3
+*.log
+*.env
+instance/
+venv/
+*.egg-info/
+*.egg
+*.whl
+.Python
+*.py[cod]
+
+# System Files
+.DS_Store
+Thumbs.db
+ehthumbs.db
+*.swp
+*.swo
+
+# IDE Files
+.vscode/
+.idea/
+*.iml
diff --git a/README.md b/README.md
index 802192f46..99e791c4b 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,60 @@
-# GroupProjectTemplate
-Please make sure to modify this readme file as well as the "about" property of the project!
+# MenuMatch
+
+## Overview
+This project focuses on building a restaurant review platform tailored for users with specific dietary needs such as vegan, gluten-free, and halal. The platform aims to make it easier for users to find suitable dining options based on their dietary preferences. Users can filter restaurant reviews according to their needs and view curated ratings for specific food categories, ensuring they choose the best dining option.
+
+## Motivation
+The idea for this project emerged from the challenges faced by international students and others with dietary restrictions, particularly in Boston. General restaurant reviews often lack specific information about how suitable a restaurant is for particular diets. This platform addresses that gap, offering users a way to filter restaurants and reviews to meet their unique requirements.
+
+### JIRA Link: https://menumatch.atlassian.net/browse/MENUMATCH
+## Features
+### Essential Features
+- **Food Type Selection**: Users can filter restaurants based on dietary preferences such as vegan, gluten-free, and halal.
+- **Overall Restaurant Review**: Users can view the overall rating of a restaurant.
+- **Curated Reviews Based on User Choices**: Reviews will be tailored to the user's selected dietary preference.
+- **User-Submitted Reviews**: Users can submit reviews for specific food types.
+- **Mobile & Web Accessibility**: The platform is accessible on both web and mobile devices.
+- **User Registration & Profile Management**: Users can sign up, log in, and manage their profile.
+
+### Desirable Features
+- **User Nationality Input**: Users can add their nationality to help others with similar taste preferences find relevant reviews.
+
+### Optional Features
+- **Food Flavor Descriptions**: Users can describe the flavors of dishes (e.g., sweet, spicy, savory).
+- **Food Photo Uploads**: Users can upload photos of the food they ordered.
+
+## Non-functional Requirements
+- **Security & Privacy**: Data encryption via HTTPS to ensure user privacy and secure communication.
+- **Performance**: The platform can handle up to 10,000 concurrent users, with search results returning within 2-3 seconds.
+- **Scalability**: Horizontal and vertical scaling for future growth.
+- **Availability**: Minimum 99.9% uptime with proper notifications for scheduled maintenance.
+- **Usability**: Intuitive and responsive design for both web and mobile versions.
+- **Compliance**: Adherence to GDPR for users in the European Union.
+
+## Technology Stack
+- **Frontend**: Angular
+- **Backend**: Flask
+- **Database**: MongoDB / MySQL (TBD)
+- **Version Control**: Git/GitHub
+- **CI/CD**: Jenkins
+- **Hosting**: AWS (EC2)
+- **Containerization**: Docker
+- **Task Management**: JIRA
+
+## Installation & Setup
+### Prerequisites
+- Python 3.x
+- Docker (optional for containerization)
+- TODO: Add further Prerequisites as decided
+
+### TODO: Add steps to setup the project
+
+
+### Branching Strategy
+We follow the **GitHub Flow** strategy:
+- Create feature branches from the `main` branch.
+- Submit a pull request after peer review and passing tests.
+- The main branch is always deployable.
+
+## License
+This project is licensed under the MIT License.
diff --git a/code/Jenkinsfile b/code/Jenkinsfile
new file mode 100644
index 000000000..91992aaad
--- /dev/null
+++ b/code/Jenkinsfile
@@ -0,0 +1,103 @@
+pipeline {
+ agent {
+ label 'develop'
+ }
+
+ environment {
+ DOCKER_COMPOSE_DEV = 'docker-compose.dev.yml'
+ DOCKER_COMPOSE_PROD = 'docker-compose.prod.yml'
+ }
+
+ stages {
+ stage('Build Backend') {
+ steps {
+ script {
+ // Build the backend container (Flask)
+ sh '''
+ cd code/server
+ docker build -f Dockerfile.dev -t menumatch-backend .
+ '''
+ }
+ }
+ }
+
+ stage('Build Frontend') {
+ steps {
+ script {
+ // Build the frontend container (React)
+ sh '''
+ cd code/menumatch
+ docker build -f Dockerfile.dev -t menumatch-frontend .
+ '''
+ }
+ }
+ }
+
+ stage('Run Tests') {
+ parallel {
+ stage('Backend Tests') {
+ steps {
+ // Run tests for backend (if any)
+ sh '''
+ cd code/server
+ echo "Backend Tests to be run here"
+ '''
+ }
+ }
+
+ stage('Frontend Tests') {
+ steps {
+ // Run tests for frontend (if any)
+ sh '''
+ cd code/menumatch
+ echo 'Frontend Tests to be run here'
+ '''
+ }
+ }
+ }
+ }
+
+ stage('Deploy to Development') {
+ steps {
+ script {
+ // Deploy the app to development environment
+ sh '''
+ cd code
+ docker-compose -f $DOCKER_COMPOSE_DEV up -d
+ '''
+ }
+ }
+ }
+
+ stage('Build and Deploy to Production') {
+ agent {
+ label 'production'
+ }
+ when {
+ branch 'main'
+ }
+ steps {
+ script {
+ // Build and deploy for production
+ sh '''
+ cd code
+ docker-compose -f $DOCKER_COMPOSE_PROD up -d --build
+ '''
+ }
+ }
+ }
+ }
+
+ post {
+ always {
+ // Clean up Docker containers and networks
+ sh 'cd code && docker-compose down'
+ }
+ success {
+ echo 'Pipeline succeeded!'
+ }
+ failure {
+ echo 'Pipeline failed.'
+ }
+ }
+}
diff --git a/code/Readme.md b/code/Readme.md
index ca77aa307..120190731 100644
--- a/code/Readme.md
+++ b/code/Readme.md
@@ -1 +1,129 @@
-This folder contains all source code and test code.
+
+# MenuMatch | Code
+
+## Overview
+
+**MenuMatch** is a restaurant review platform designed specifically for users with special dietary needs. It allows users to filter restaurant reviews based on their dietary preferences (e.g., vegan, halal, gluten-free), making it easier to find dining options that fit their requirements.
+
+The project consists of two components:
+1. **Backend (Flask)**: This handles the API and business logic.
+2. **Frontend (React)**: This is the user interface for the platform.
+
+## Prerequisites
+
+Before running the project, make sure you have the following installed:
+
+- [Node.js](https://nodejs.org/) (for running the React frontend locally)
+- [Python 3.x](https://www.python.org/) (for running the Flask backend locally)
+- [Docker](https://www.docker.com/) (for running the project using Docker)
+- [Docker Compose](https://docs.docker.com/compose/) (to orchestrate multi-container Docker applications)
+
+---
+
+## Running the Project Using Docker
+
+You can run the entire project (both frontend and backend) using Docker in two different environments: **development** and **production**.
+
+### 1. Development Environment
+
+In the development environment, the backend Flask app runs in development mode, and the React app runs with hot-reloading.
+
+#### Steps:
+
+1. Build and start the containers:
+
+ ```bash
+ docker-compose -f docker-compose.dev.yml up --build
+ ```
+2. The services should now be accessible at:
+
+- **Frontend (React)**: http://localhost:8000
+- **Backend (Flask)**: http://localhost:8080
+#### Notes:
+
+- Any changes you make to the source code will be reflected immediately due to the volume mappings in the development setup.
+
+### 2. Production Environment
+
+In the production environment, the Flask app is served via `gunicorn`, and the React app is built and served using `nginx`.
+
+#### Steps:
+
+1. Build and start the containers in detached mode:
+ ```bash
+ docker-compose -f docker-compose.prod.yml up --build -d
+ ```
+
+2. The services should now be accessible at:
+
+ - **Frontend (React)**: http://localhost:80
+ - **Backend (Flask)**: http://localhost:5000
+
+#### Notes:
+
+- In production mode, the frontend is optimized and served by Nginx.
+-----
+## Running the Project Locally
+
+If you prefer to run the project locally without Docker, you can run the backend and frontend independently. Below are the steps for both.
+
+### 1. Backend (Flask) Setup
+
+#### Steps:
+
+1. Navigate to the `server` directory:
+ ```bash
+ cd server
+ ```
+2. - Create a virtual environment (optional but recommended):
+ ```bash
+ python3 -m venv venv
+ source venv/bin/activate
+ ```
+
+- Install dependencies:
+ ```bash
+ pip install -r requirements.txt
+ ```
+
+- Run the Flask app:
+ ```bash
+ python run.py
+ ```
+
+- The backend should now be running at: http://localhost:8000
+
+### 2. Frontend (React) Setup
+
+#### Steps:
+
+1. Navigate to the `menumatch` directory:
+ ```bash
+ cd menumatch
+ ```
+
+2. Install dependencies:
+ ```bash
+ npm install
+ ```
+
+3. Start the React development server:
+ ```bash
+ npm start
+ ```
+
+4. The frontend should now be running at: http://localhost:8080
+
+## Docker Tips
+
+### Building and Rebuilding Containers
+
+- To **build** or **rebuild** a Docker container, use the following command:
+ ```bash
+ docker-compose up --build
+ ```
+
+- To **stop** and **remove** containers, networks, and volumes:
+ ```bash
+ docker-compose down
+ ```
\ No newline at end of file
diff --git a/code/docker-compose.dev.yml b/code/docker-compose.dev.yml
new file mode 100644
index 000000000..802b654ca
--- /dev/null
+++ b/code/docker-compose.dev.yml
@@ -0,0 +1,23 @@
+version: '3'
+services:
+ backend:
+ build:
+ context: ./server
+ dockerfile: Dockerfile.dev
+ ports:
+ - "8000:5000"
+ volumes:
+ - ./server:/app
+ environment:
+ - FLASK_ENV=development
+
+ frontend:
+ build:
+ context: ./menumatch
+ dockerfile: Dockerfile.dev
+ ports:
+ - "3000:3000"
+ volumes:
+ - ./menumatch:/app
+ environment:
+ - CHOKIDAR_USEPOLLING=true
diff --git a/code/docker-compose.prod.yml b/code/docker-compose.prod.yml
new file mode 100644
index 000000000..f5a68743e
--- /dev/null
+++ b/code/docker-compose.prod.yml
@@ -0,0 +1,17 @@
+version: '3'
+services:
+ backend:
+ build:
+ context: ./server
+ dockerfile: Dockerfile.prod
+ ports:
+ - "8000:5000"
+ environment:
+ - FLASK_ENV=production
+
+ frontend:
+ build:
+ context: ./menumatch
+ dockerfile: Dockerfile.prod
+ ports:
+ - "8080:80"
diff --git a/code/menumatch/.gitignore b/code/menumatch/.gitignore
new file mode 100644
index 000000000..4d29575de
--- /dev/null
+++ b/code/menumatch/.gitignore
@@ -0,0 +1,23 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+/build
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
diff --git a/code/menumatch/Dockerfile.dev b/code/menumatch/Dockerfile.dev
new file mode 100644
index 000000000..4e3887c8d
--- /dev/null
+++ b/code/menumatch/Dockerfile.dev
@@ -0,0 +1,18 @@
+# Stage 1: Development - Build the React app
+FROM node:18-alpine
+
+# Set working directory
+WORKDIR /app
+
+# Install dependencies
+COPY package.json /app/package.json
+RUN npm install --silent
+
+# Copy the rest of the source code
+COPY . /app
+
+# Expose port 3000 for React development server
+EXPOSE 3000
+
+# Start React development server
+CMD ["npm", "start"]
diff --git a/code/menumatch/Dockerfile.prod b/code/menumatch/Dockerfile.prod
new file mode 100644
index 000000000..c20f55640
--- /dev/null
+++ b/code/menumatch/Dockerfile.prod
@@ -0,0 +1,25 @@
+# Stage 1: Build the React app
+FROM node:18-alpine AS build
+
+# Set working directory
+WORKDIR /app
+
+# Install dependencies
+COPY package.json /app/package.json
+RUN npm install --silent
+
+# Copy the rest of the source code and build the app
+COPY . /app
+RUN npm run build
+
+# Stage 2: Serve the React app using Nginx
+FROM nginx:alpine
+
+# Copy built app to Nginx's default html folder
+COPY --from=build /app/build /usr/share/nginx/html
+
+# Expose port 80
+EXPOSE 80
+
+# Start Nginx server
+CMD ["nginx", "-g", "daemon off;"]
diff --git a/code/menumatch/README.md b/code/menumatch/README.md
new file mode 100644
index 000000000..58beeaccd
--- /dev/null
+++ b/code/menumatch/README.md
@@ -0,0 +1,70 @@
+# Getting Started with Create React App
+
+This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
+
+## Available Scripts
+
+In the project directory, you can run:
+
+### `npm start`
+
+Runs the app in the development mode.\
+Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
+
+The page will reload when you make changes.\
+You may also see any lint errors in the console.
+
+### `npm test`
+
+Launches the test runner in the interactive watch mode.\
+See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
+
+### `npm run build`
+
+Builds the app for production to the `build` folder.\
+It correctly bundles React in production mode and optimizes the build for the best performance.
+
+The build is minified and the filenames include the hashes.\
+Your app is ready to be deployed!
+
+See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
+
+### `npm run eject`
+
+**Note: this is a one-way operation. Once you `eject`, you can't go back!**
+
+If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
+
+Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
+
+You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
+
+## Learn More
+
+You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
+
+To learn React, check out the [React documentation](https://reactjs.org/).
+
+### Code Splitting
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
+
+### Analyzing the Bundle Size
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
+
+### Making a Progressive Web App
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
+
+### Advanced Configuration
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
+
+### Deployment
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
+
+### `npm run build` fails to minify
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
diff --git a/code/menumatch/package.json b/code/menumatch/package.json
new file mode 100644
index 000000000..5937e1aaa
--- /dev/null
+++ b/code/menumatch/package.json
@@ -0,0 +1,62 @@
+{
+ "name": "menumatch",
+ "version": "0.1.0",
+ "private": true,
+ "dependencies": {
+ "@emotion/react": "^11.13.3",
+ "@emotion/styled": "^11.13.0",
+ "@testing-library/jest-dom": "^5.17.0",
+ "@testing-library/react": "^13.4.0",
+ "@testing-library/user-event": "^13.5.0",
+ "feather-icons": "^4.29.2",
+ "framer-motion": "^7.10.3",
+ "react": "^18.3.1",
+ "react-anchor-link-smooth-scroll": "^1.0.12",
+ "react-dom": "^18.3.1",
+ "react-github-btn": "^1.4.0",
+ "react-modal": "^3.16.1",
+ "react-rnd": "^10.4.13",
+ "react-router-dom": "^6.27.0",
+ "react-scripts": "^5.0.1",
+ "react-slick": "^0.29.0",
+ "slick-carousel": "^1.8.1",
+ "styled-components": "^5.3.11",
+ "tailwindcss": "^3.4.14",
+ "twin.macro": "^3.4.1",
+ "web-vitals": "^2.1.4"
+ },
+ "scripts": {
+ "start": "react-scripts start",
+ "build": "react-scripts build",
+ "test": "react-scripts test",
+ "eject": "react-scripts eject"
+ },
+ "eslintConfig": {
+ "extends": [
+ "react-app",
+ "react-app/jest"
+ ],
+ "overrides": [
+ {
+ "files": [
+ "src/**/*.js"
+ ],
+ "rules": {
+ "import/no-anonymous-default-export": "off"
+ }
+ }
+ ]
+ },
+ "browserslist": {
+ "production": [
+ ">0.2%",
+ "not dead",
+ "not op_mini all"
+ ],
+ "development": [
+ "last 1 chrome version",
+ "last 1 firefox version",
+ "last 1 safari version"
+ ]
+ }
+}
diff --git a/code/menumatch/public/favicon.ico b/code/menumatch/public/favicon.ico
new file mode 100644
index 000000000..487244df9
Binary files /dev/null and b/code/menumatch/public/favicon.ico differ
diff --git a/code/menumatch/public/index.html b/code/menumatch/public/index.html
new file mode 100644
index 000000000..0149c2b23
--- /dev/null
+++ b/code/menumatch/public/index.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ MenuMatch
+
+
+
+
+
+
+
diff --git a/code/menumatch/public/logo192.png b/code/menumatch/public/logo192.png
new file mode 100644
index 000000000..fc44b0a37
Binary files /dev/null and b/code/menumatch/public/logo192.png differ
diff --git a/code/menumatch/public/logo512.png b/code/menumatch/public/logo512.png
new file mode 100644
index 000000000..a4e47a654
Binary files /dev/null and b/code/menumatch/public/logo512.png differ
diff --git a/code/menumatch/public/manifest.json b/code/menumatch/public/manifest.json
new file mode 100644
index 000000000..080d6c77a
--- /dev/null
+++ b/code/menumatch/public/manifest.json
@@ -0,0 +1,25 @@
+{
+ "short_name": "React App",
+ "name": "Create React App Sample",
+ "icons": [
+ {
+ "src": "favicon.ico",
+ "sizes": "64x64 32x32 24x24 16x16",
+ "type": "image/x-icon"
+ },
+ {
+ "src": "logo192.png",
+ "type": "image/png",
+ "sizes": "192x192"
+ },
+ {
+ "src": "logo512.png",
+ "type": "image/png",
+ "sizes": "512x512"
+ }
+ ],
+ "start_url": ".",
+ "display": "standalone",
+ "theme_color": "#000000",
+ "background_color": "#ffffff"
+}
diff --git a/code/menumatch/public/robots.txt b/code/menumatch/public/robots.txt
new file mode 100644
index 000000000..e9e57dc4d
--- /dev/null
+++ b/code/menumatch/public/robots.txt
@@ -0,0 +1,3 @@
+# https://www.robotstxt.org/robotstxt.html
+User-agent: *
+Disallow:
diff --git a/code/menumatch/src/App.css b/code/menumatch/src/App.css
new file mode 100644
index 000000000..74b5e0534
--- /dev/null
+++ b/code/menumatch/src/App.css
@@ -0,0 +1,38 @@
+.App {
+ text-align: center;
+}
+
+.App-logo {
+ height: 40vmin;
+ pointer-events: none;
+}
+
+@media (prefers-reduced-motion: no-preference) {
+ .App-logo {
+ animation: App-logo-spin infinite 20s linear;
+ }
+}
+
+.App-header {
+ background-color: #282c34;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ font-size: calc(10px + 2vmin);
+ color: white;
+}
+
+.App-link {
+ color: #61dafb;
+}
+
+@keyframes App-logo-spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+}
diff --git a/code/menumatch/src/App.js b/code/menumatch/src/App.js
new file mode 100644
index 000000000..5b85b52e9
--- /dev/null
+++ b/code/menumatch/src/App.js
@@ -0,0 +1,25 @@
+import React from "react";
+import GlobalStyles from './styles/GlobalStyles.js';
+import { css } from "styled-components/macro"; //eslint-disable-line
+
+import LandingPage from "./pages/LandingPage.js";
+
+import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
+import Login from "./pages/Login.js";
+import SignUp from "./pages/SignUp.js"
+
+export default function App() {
+
+ return (
+ <>
+
+
+
+ } />
+ } />
+ } />
+
+
+ >
+ );
+}
diff --git a/code/menumatch/src/App.test.js b/code/menumatch/src/App.test.js
new file mode 100644
index 000000000..1f03afeec
--- /dev/null
+++ b/code/menumatch/src/App.test.js
@@ -0,0 +1,8 @@
+import { render, screen } from '@testing-library/react';
+import App from './App';
+
+test('renders learn react link', () => {
+ render();
+ const linkElement = screen.getByText(/learn react/i);
+ expect(linkElement).toBeInTheDocument();
+});
diff --git a/code/menumatch/src/components/features.js b/code/menumatch/src/components/features.js
new file mode 100644
index 000000000..df6b5c6be
--- /dev/null
+++ b/code/menumatch/src/components/features.js
@@ -0,0 +1,117 @@
+import React from "react";
+import styled from "styled-components";
+import tw from "twin.macro";
+import { css } from "styled-components/macro"; //eslint-disable-line
+import { SectionHeading, Subheading as SubheadingBase } from "./misc/Headings.js";
+import { SectionDescription } from "./misc/Typography.js";
+import { Container, ContentWithPaddingXl } from "./misc/Layouts.js";
+import { ReactComponent as ArrowRightIcon } from "../images/arrow-right-icon.svg";
+import ReliableIconImage from "../images/reliable-icon.svg";
+import ShieldIconImage from "../images/shield-icon.svg";
+import CustomizeIconImage from "../images/customize-icon.svg";
+import { ReactComponent as SvgDecoratorBlob3 } from "../images/svg-decorator-blob-3.svg";
+
+const Heading = tw(SectionHeading)``;
+const Subheading = tw(SubheadingBase)`text-center mb-3`;
+const Description = tw(SectionDescription)`text-center mx-auto`;
+const ThreeColumnContainer = styled.div`
+ ${tw`mt-10 flex flex-col items-center lg:items-stretch lg:flex-row flex-wrap lg:justify-center max-w-screen-lg mx-auto`}
+`;
+const Column = styled.div`
+ ${tw`lg:w-1/3 max-w-xs`}
+`;
+
+const Card = styled.a`
+ ${tw`flex flex-col items-center text-center h-full mx-4 px-4 py-8 rounded transition-transform duration-300 hover:cursor-pointer transform hover:scale-105 `}
+ .imageContainer {
+ ${tw`text-center rounded-full p-4 bg-gray-100`}
+ img {
+ ${tw`w-8 h-8`}
+ }
+ }
+
+ .title {
+ ${tw`mt-4 font-bold text-xl leading-none`}
+ }
+
+ .description {
+ ${tw`mt-4 text-sm font-medium text-secondary-300`}
+ }
+
+ .link {
+ ${tw`mt-auto inline-flex items-center pt-5 text-sm font-bold text-primary-300 leading-none hocus:text-primary-900 transition duration-300`}
+ .icon {
+ ${tw`ml-2 w-4`}
+ }
+ }
+`;
+
+const DecoratorBlob = styled(SvgDecoratorBlob3)`
+ ${tw`pointer-events-none absolute right-0 bottom-0 w-64 opacity-25 transform translate-x-32 translate-y-40`}
+`;
+
+export default ({
+ cards = [
+ {
+ imageSrc: ShieldIconImage,
+ title: "Secure",
+ description: "We strictly only deal with vendors that provide top notch security.",
+ url: "#"
+ },
+ {
+ imageSrc: ReliableIconImage,
+ title: "Reliable",
+ description: "Lorem ipsum donor amet siti ceali placeholder text",
+ url: "#"
+ },
+ {
+ imageSrc: CustomizeIconImage,
+ title: "Customizable",
+ description: "Lorem ipsum donor amet siti ceali placeholder text",
+ url: "#"
+ }
+ ],
+ linkText = "Learn More",
+ heading = "",
+ subheading = "",
+ description = "",
+ imageContainerCss = null,
+ imageCss = null
+}) => {
+ /*
+ * This componets accepts a prop - `cards` which is an array of object denoting the cards. Each object in the cards array can have the following keys (Change it according to your need, you can also add more objects to have more cards in this feature component):
+ * 1) imageSrc - the image shown at the top of the card
+ * 2) title - the title of the card
+ * 3) description - the description of the card
+ * 4) url - the url that the card should goto on click
+ */
+ return (
+
+
+ {subheading && {subheading}}
+ {heading && {heading}}
+ {description && {description}}
+
+ {cards.map((card, i) => (
+
+
+
+
+
+ {card.title}
+