├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── components ├── Cards │ ├── CardBarChart.js │ ├── CardLineChart.js │ ├── CardPageVisits.js │ ├── CardProfile.js │ ├── CardSettings.js │ ├── CardSocialTraffic.js │ ├── CardStats.js │ └── CardTable.js ├── Dropdowns │ ├── IndexDropdown.js │ ├── NotificationDropdown.js │ ├── PagesDropdown.js │ ├── TableDropdown.js │ └── UserDropdown.js ├── Footers │ ├── Footer.js │ ├── FooterAdmin.js │ └── FooterSmall.js ├── Headers │ └── HeaderStats.js ├── Maps │ └── MapExample.js ├── Navbars │ ├── AdminNavbar.js │ ├── AuthNavbar.js │ └── IndexNavbar.js ├── PageChange │ └── PageChange.js └── Sidebar │ └── Sidebar.js ├── jsconfig.json ├── layouts ├── Admin.js └── Auth.js ├── next.config.js ├── package.json ├── pages ├── 404.js ├── _app.js ├── _document.js ├── _error.js ├── admin │ ├── dashboard.js │ ├── maps.js │ ├── settings.js │ └── tables.js ├── auth │ ├── login.js │ └── register.js ├── index.js ├── landing.js └── profile.js ├── public └── img │ ├── angular.jpg │ ├── bootstrap.jpg │ ├── brand │ ├── apple-icon.png │ └── favicon.ico │ ├── component-btn-pink.png │ ├── component-btn.png │ ├── component-info-2.png │ ├── component-info-card.png │ ├── component-menu.png │ ├── component-profile-card.png │ ├── documentation.png │ ├── github.svg │ ├── google.svg │ ├── img-1-1000x600.jpg │ ├── landing.jpg │ ├── login.jpg │ ├── pattern_nextjs.png │ ├── profile.jpg │ ├── react.jpg │ ├── register_bg_2.png │ ├── sketch.jpg │ ├── team-1-800x800.jpg │ ├── team-2-800x800.jpg │ ├── team-3-800x800.jpg │ ├── team-4-470x470.png │ └── vue.jpg ├── styles ├── index.css └── tailwind.css └── tailwind.config.js /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Autocloser 2 | on: [issues] 3 | jobs: 4 | autoclose: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - name: Issue auto-closer 8 | uses: roots/issue-closer-action@v1.1 9 | with: 10 | repo-token: ${{ secrets.GITHUB_TOKEN }} 11 | issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n
\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/notus-nextjs?ref=nnjs-new-issue\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n\n\n" 12 | issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>) 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | 25 | .next/ 26 | out/ 27 | 28 | commit.sh 29 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [1.1.0] 2021-03-19 4 | ### Bug fixing 5 | - Rename `master` branch to `main` 6 | - To make a lot of our changes, we've followed the instructions from here (minus the `colors` and `font-sizes`): https://tailwindcss.com/docs/upgrading-to-v2 7 | - For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-gray-{number}` classes were renamed to `{type}-blueGray-{number}` 8 | - After that, we've changed `{type}-blueGray-{number}` to `{type}-blueGray-{lower-number}`, i.e. (`100` became `50`, `200` became `100`, ..., `900` became `800`) 9 | - You can achieve this, by search in your whole project for `blueGray-100` and replace it with `blueGray-50` 10 | - Then, you search in your whole project for `blueGray-200` and replace it with `blueGray-100` 11 | - Then, you search in your whole project for `blueGray-300` and replace it with `blueGray-200` 12 | - Then, you search in your whole project for `blueGray-400` and replace it with `blueGray-300` 13 | - Then, you search in your whole project for `blueGray-500` and replace it with `blueGray-400` 14 | - Then, you search in your whole project for `blueGray-600` and replace it with `blueGray-500` 15 | - Then, you search in your whole project for `blueGray-700` and replace it with `blueGray-600` 16 | - Then, you search in your whole project for `blueGray-800` and replace it with `blueGray-700` 17 | - Then, you search in your whole project for `blueGray-900` and replace it with `blueGray-800` 18 | - For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-blue-{number}` classes were renamed to `{type}-lightBlue-{number}` 19 | - For the colors, the only change that we made, is the fact that we've added all Tailwind CSS colors to our `tailwind.config.js` files, and inside our product, all `{type}-green-{number}` classes were renamed to `{type}-emerald-{number}` 20 | - `lg:bg-transparent` is not working anymore, so we've changed it with `lg:bg-opacity-0` 21 | - Since we've dropped the usage of custom CSS, and reverted to `Built-In CSS Support` from `NextJS`, we had to move our images inside the `public` folder, and our styles inside the `styles` folder 22 | - All the `require` images have been replaced by simple `/img/` strings 23 | - https://github.com/creativetimofficial/notus-angular/issues/4 24 | - https://github.com/creativetimofficial/notus-js/issues/4 25 | - https://github.com/creativetimofficial/notus-js/pull/5 26 | - https://github.com/creativetimofficial/notus-js/pull/6 27 | - https://github.com/creativetimofficial/notus-nextjs/issues/6 28 | - https://github.com/creativetimofficial/notus-nextjs/issues/7 29 | - https://github.com/creativetimofficial/notus-nextjs/issues/8 30 | - https://github.com/creativetimofficial/notus-react/issues/3 31 | - https://github.com/creativetimofficial/notus-svelte/issues/3 32 | - https://github.com/creativetimofficial/notus-svelte/issues/6 33 | - https://github.com/creativetimofficial/vue-notus/pull/4/ 34 | ### Major style changes 35 | - The upgrade of Tailwind CSS from version 1 to version 2, will cause multiple style changes, check them out on the official Tailwind CSS websites: 36 | - https://blog.tailwindcss.com/tailwindcss-v2 37 | - https://tailwindcss.com/ 38 | - https://tailwindcss.com/docs/upgrading-to-v2 39 | ### Deleted components 40 | - `next.config.js` (we do not need it anymore since we now use `Built-In CSS Support` from `NextJS`) 41 | - for the absolute imports, we've used the `jsconfig.json` file 42 | ### Added components 43 | - `jsconfig.json` (to keep our absolute imports) 44 | ### Deleted dependencies 45 | - `@tailwindcss/custom-forms` 46 | - `react-google-maps` (replaced by simple Google Maps API) 47 | - `@types/googlemaps` (dependencies of `react-google-maps`) 48 | - `@types/markerclustererplus` (dependencies of `react-google-maps`) 49 | - `@types/react` (dependencies of `react-google-maps`) 50 | - `@zeit/next-css` (we'll use the default `Built-In CSS Support` from `NextJS`) 51 | - `@zeit/next-sass` (we'll use the default `Built-In CSS Support` from `NextJS`) 52 | - `node-sass` (we'll use the default `Built-In CSS Support` from `NextJS`) 53 | - `next-images` (we'll use the default `Built-In CSS Support` from `NextJS`) 54 | - `next-fonts` (we'll use the default `Built-In CSS Support` from `NextJS`) 55 | - `next-compose-plugins` (we'll use the default `Built-In CSS Support` from `NextJS`) 56 | - `path` (we'll use the default `Built-In CSS Support` from `NextJS`) 57 | - `webpack` (we'll use the default `Built-In CSS Support` from `NextJS`) 58 | ### Added dependencies 59 | - `@tailwindcss/forms` (replaces `@tailwindcss/custom-forms`) 60 | - `autoprefixer` 61 | - `postcss` 62 | ### Updated dependencies 63 | ``` 64 | @fortawesome/fontawesome-free 5.14.0 → 5.15.3 65 | @popperjs/core 2.5.1 → 2.9.1 66 | chart.js 2.9.3 → 2.9.4 67 | next 9.5.3 → 10.0.9 68 | react 16.13.1 → 17.0.1 69 | @types/react 16.9.49 → 17.0.3 70 | react-dom 16.13.1 → 17.0.1 71 | react-scripts 3.4.3 → 4.0.3 72 | tailwindcss 1.8.10 → 2.0.4 73 | typescript 4.0.3 → 4.2.3 74 | ``` 75 | ### Warning 76 | _On a clean install there may be some warnings from request, chokidar, fsevents - they come from node_modules, and they do not affect the product at all._ 77 | 78 | ## [1.0.0] 2020-09-29 79 | ### Original Release 80 | - Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=nnjs-changelog) 81 | - Added design from Tailwind Starter Kit by Creative Tim 82 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Creative Tim (https://www.creative-tim.com?ref=nnjs-license) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Notus NextJS  2 | 3 |       4 | 5 |  6 | 7 | ### A beautiful UI Kit and Admin for Tailwind CSS and NextJS. 8 | 9 | Start your development with a Free Tailwind CSS and NextJS UI Kit and Admin. Let Notus NextJS amaze you with its cool features and build tools and get your project to a whole new level. 10 | 11 | Notus NextJS is Free and Open Source. It features multiple HTML and NextJS elements and it comes with dynamic components for NextJS. 12 | 13 | It is based on [Tailwind Starter Kit](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=nnjs-github-readme) by Creative Tim, and it is build with both presentation pages, and pages for an admin dashboard. 14 | 15 | Speed up your web development with a beautiful product made by Creative Tim . 16 | If you like bright and fresh colors, you will love this Free Tailwind CSS Template! It features a huge number of components that can help you create amazing websites. 17 | 18 | ### Get Started 19 | 20 | - Install NodeJS **LTS** version from NodeJs Official Page 21 | - Download the product on this page 22 | - Unzip the downloaded file to a folder in your computer 23 | - Open Terminal 24 | - Go to your file project (where you’ve unzipped the product) 25 | - (If you are on a linux based terminal) Simply run `npm run install:clean` 26 | - (If not) Run in terminal `npm install` 27 | - (If not) Run in terminal `npm run build:tailwind` (each time you add a new class, a class that does not exist in `src/assets/styles/tailwind.css`, you will need to run this command) 28 | - (If not) Run in terminal `npm run dev` 29 | - Navigate to https://localhost:3000 30 | - Check more about [Tailwind CSS](https://tailwindcss.com/?ref=creativetim) 31 | 32 | ### Pages 33 | 34 | If you want to get inspiration or just show something directly to your clients, 35 | you can jump start your development with our pre-built example pages. You will be able 36 | to quickly set up the basic structure for your web project. 37 | 38 | Here are all the page from the project: 39 | - [Presentation](https://demos.creative-tim.com/notus-nextjs/?ref=nnjs-github-readme) 40 | - Admin Samples 41 | - [Dashboard](https://demos.creative-tim.com/notus-nextjs/admin/dashboard?ref=nnjs-github-readme) 42 | - [Settings](https://demos.creative-tim.com/notus-nextjs/admin/settings?ref=nnjs-github-readme) 43 | - [Tables](https://demos.creative-tim.com/notus-nextjs/admin/tables?ref=nnjs-github-readme) 44 | - [Maps](https://demos.creative-tim.com/notus-nextjs/admin/maps?ref=nnjs-github-readme) 45 | - Authentication Samples 46 | - [Login](https://demos.creative-tim.com/notus-nextjs/auth/login?ref=nnjs-github-readme) 47 | - [Register](https://demos.creative-tim.com/notus-nextjs/auth/register?ref=nnjs-github-readme) 48 | - Presentation Samples 49 | - [Landing](https://demos.creative-tim.com/notus-nextjs/landing?ref=nnjs-github-readme) 50 | - [Profile](https://demos.creative-tim.com/notus-nextjs/profile?ref=nnjs-github-readme) 51 | 52 | 53 | ### Fully Coded Components 54 | 55 | Notus NextJS is built with over frontend 120 components, giving you the freedom of choosing and combining. All components can take variations in colors, that you can easily modify using Tailwind CSS classes (NOTE: each time you add a new class, a class that does not exist in `src/assets/styles/tailwind.css`, you will need to compile again tailwind). 56 | 57 | You will save a lot of time going from prototyping to full-functional code, because all elements are implemented. 58 | This Free Tailwind CSS Template is coming with prebuilt examples, so the development process is seamless, switching from our pages to the real website is very easy to be done. 59 | 60 | Every element has multiple states for colors, styles, hover, focus, that you can easily access and use. 61 | 62 | 63 | ### CSS Components 64 | 65 | Notus NextJS comes with 120 Fully Coded CSS elements, such as [Alerts](https://www.creative-tim.com/learning-lab/tailwind/nextjs/alerts/notus?ref=nnjs-github-readme), [Buttons](https://www.creative-tim.com/learning-lab/tailwind/nextjs/buttons/notus?ref=nnjs-github-readme), [Inputs](https://www.creative-tim.com/learning-lab/tailwind/nextjs/inputs/notus?ref=nnjs-github-readme) and many more. 66 | 67 | Please [check all of them here](https://www.creative-tim.com/learning-lab/tailwind/nextjs/alerts/notus?ref=nnjs-github-readme). 68 | 69 | ### NextJS Components 70 | 71 | We also feature the following 18 dynamic components: 72 | - [Alerts](https://www.creative-tim.com/learning-lab/tailwind/nextjs/alerts/notus?ref=nnjs-github-readme) 73 | - [Popper for Menus](https://www.creative-tim.com/learning-lab/tailwind/nextjs/dropdowns/notus?ref=nnjs-github-readme) 74 | - [Menus](https://www.creative-tim.com/learning-lab/tailwind/nextjs/menus/notus?ref=nnjs-github-readme) 75 | - [Modals](https://www.creative-tim.com/learning-lab/tailwind/nextjs/modals/notus?ref=nnjs-github-readme) 76 | - [Navbars](https://www.creative-tim.com/learning-lab/tailwind/nextjs/navbar/notus?ref=nnjs-github-readme) 77 | - [Popper for popover content](https://www.creative-tim.com/learning-lab/tailwind/nextjs/popovers/notus?ref=nnjs-github-readme) 78 | - [Tabs](https://www.creative-tim.com/learning-lab/tailwind/nextjs/tabs/notus?ref=nnjs-github-readme) 79 | - [Popper for tooltips content](https://www.creative-tim.com/learning-lab/tailwind/nextjs/tooltips/notus?ref=nnjs-github-readme) 80 | 81 | 82 | ## Table of Contents 83 | 84 | * [Versions](#versions) 85 | * [Documentation](#documentation) 86 | * [Quick Start](#quick-start) 87 | * [Deploy](#deploy) 88 | * [Files and folders](#files-and-folders) 89 | * [Browser Support](#browser-support) 90 | * [Reporting Issues](#reporting-issues) 91 | * [Licensing](#licensing) 92 | * [Useful Links](#useful-links) 93 | * [Resources](#resources) 94 | 95 | ## Versions 96 | 97 | [
32 | Page name 33 | | 34 |35 | Visitors 36 | | 37 |38 | Unique users 39 | | 40 |41 | Bounce rate 42 | | 43 |
---|---|---|---|
48 | /argon/ 49 | | 50 |51 | 4,569 52 | | 53 |54 | 340 55 | | 56 |57 | 58 | 46,53% 59 | | 60 |
63 | /argon/index.html 64 | | 65 |66 | 3,985 67 | | 68 |69 | 319 70 | | 71 |72 | 73 | 46,53% 74 | | 75 |
78 | /argon/charts.html 79 | | 80 |81 | 3,513 82 | | 83 |84 | 294 85 | | 86 |87 | 88 | 36,49% 89 | | 90 |
93 | /argon/tables.html 94 | | 95 |96 | 2,050 97 | | 98 |99 | 147 100 | | 101 |102 | 103 | 50,87% 104 | | 105 |
108 | /argon/profile.html 109 | | 110 |111 | 1,795 112 | | 113 |114 | 190 115 | | 116 |117 | 118 | 46,53% 119 | | 120 |
64 | An artist of considerable range, Jenna the name taken by 65 | Melbourne-raised, Brooklyn-based Nick Murphy writes, performs 66 | and records all of his own music, giving it a warm, intimate 67 | feel with a solid groove structure. An artist of considerable 68 | range. 69 |
70 | e.preventDefault()} 74 | > 75 | Show more 76 | 77 |32 | Referral 33 | | 34 |35 | Visitors 36 | | 37 |38 | |
---|---|---|
43 | Facebook 44 | | 45 |46 | 1,480 47 | | 48 |
49 |
50 | 60%
51 |
60 |
52 |
59 |
53 |
57 |
58 | |
61 |
64 | Facebook 65 | | 66 |67 | 5,480 68 | | 69 |
70 |
71 | 70%
72 |
81 |
73 |
80 |
74 |
78 |
79 | |
82 |
85 | Google 86 | | 87 |88 | 4,807 89 | | 90 |
91 |
92 | 80%
93 |
102 |
94 |
101 |
95 |
99 |
100 | |
103 |
106 | Instagram 107 | | 108 |109 | 3,678 110 | | 111 |
112 |
113 | 75%
114 |
123 |
115 |
122 |
116 |
120 |
121 | |
124 |
127 | twitter 128 | | 129 |130 | 2,645 131 | | 132 |
133 |
134 | 30%
135 |
144 |
136 |
143 |
137 |
141 |
142 | |
145 |
39 | 40 | {" "} 49 | {statPercent}% 50 | 51 | {statDescripiron} 52 |
53 |44 | Project 45 | | 46 |54 | Budget 55 | | 56 |64 | Status 65 | | 66 |74 | Users 75 | | 76 |84 | Completion 85 | | 86 |94 | |
---|---|---|---|---|---|
99 | ![]() |
113 | 114 | $2,500 USD 115 | | 116 |117 | pending 118 | | 119 |
120 |
121 |
142 | ![]() ![]() ![]() ![]() |
143 |
144 |
145 | 60%
146 |
155 |
147 |
154 |
148 |
152 |
153 | |
156 |
157 | |
159 |
162 | ![]() |
176 | 177 | $1,800 USD 178 | | 179 |180 | {" "} 181 | completed 182 | | 183 |
184 |
185 |
206 | ![]() ![]() ![]() ![]() |
207 |
208 |
209 | 100%
210 |
219 |
211 |
218 |
212 |
216 |
217 | |
220 |
221 | |
223 |
226 | ![]() |
240 | 241 | $3,150 USD 242 | | 243 |244 | delayed 245 | | 246 |
247 |
248 |
269 | ![]() ![]() ![]() ![]() |
270 |
271 |
272 | 73%
273 |
282 |
274 |
281 |
275 |
279 |
280 | |
283 |
284 | |
286 |
289 | ![]() |
303 | 304 | $4,400 USD 305 | | 306 |307 | on 308 | schedule 309 | | 310 |
311 |
312 |
333 | ![]() ![]() ![]() ![]() |
334 |
335 |
336 | 90%
337 |
346 |
338 |
345 |
339 |
343 |
344 | |
347 |
348 | |
350 |
353 | ![]() |
367 | 368 | $2,200 USD 369 | | 370 |371 | {" "} 372 | completed 373 | | 374 |
375 |
376 |
397 | ![]() ![]() ![]() ![]() |
398 |
399 |
400 | 100%
401 |
410 |
402 |
409 |
403 |
407 |
408 | |
411 |
412 | |
414 |
A free Admin for Tailwind CSS, React, React Hooks, and NextJS.
35 | This is a simple example of a Landing Page you can build 36 | using Notus NextJS. It features multiple CSS components 37 | based on the Tailwind CSS design system. 38 |
39 |75 | Divide details about your product or agency work into 76 | parts. A paragraph describing a feature will be enough. 77 |
78 |90 | Keep you user engaged by providing meaningful information. 91 | Remember that by this time, the user is curious. 92 |
93 |105 | Write a few lines about each one. A paragraph describing a 106 | feature will be enough. Keep you user engaged! 107 |
108 |122 | Don't let your uses guess by attaching tooltips and popoves to 123 | any element. Just make sure you enable them first via 124 | JavaScript. 125 |
126 |127 | The kit comes with three pre-built pages to help you get 128 | started faster. You can change the text and images and you're 129 | good to go. Just make sure you enable them first via 130 | JavaScript. 131 |
132 | 133 | 134 | Check Notus NextJS! 135 | 136 | 137 |147 | 158 |167 |159 | Top Notch Services 160 |
161 |162 | The Arctic Ocean freezes every winter and much of the 163 | sea-ice then thaws every summer, and that process will 164 | continue whatever happens. 165 |
166 |
210 | The extension comes with three pre-built pages to help you 211 | get started faster. You can change the text and images and 212 | you're good to go. 213 |
214 |270 | According to the National Oceanic and Atmospheric 271 | Administration, Ted, Scambos, NSIDClead scentist, puts the 272 | potentially record maximum. 273 |
274 |287 | Web Developer 288 |
289 |322 | Marketing Specialist 323 |
324 |351 | UI/UX Designer 352 |
353 |386 | Founder and CEO 387 |
388 |449 | Put the potentially record low maximum sea ice extent tihs 450 | year down to low ice. According to the National Oceanic and 451 | Atmospheric Administration, Ted, Scambos. 452 |
453 |464 | Some quick example text to build on the card title and make up 465 | the bulk of the card's content. 466 |
467 |476 | Some quick example text to build on the card title and make up 477 | the bulk of the card's content. 478 |
479 |488 | Some quick example text to build on the card title and make up 489 | the bulk of the card's content. 490 |
491 |505 | Complete this form and we will get back to you in 24 506 | hours. 507 |
508 |118 | An artist of considerable range, Jenna the name taken by 119 | Melbourne-raised, Brooklyn-based Nick Murphy writes, 120 | performs and records all of his own music, giving it a 121 | warm, intimate feel with a solid groove structure. An 122 | artist of considerable range. 123 |
124 | e.preventDefault()} 128 | > 129 | Show more 130 | 131 |